1
My current newbb 2.0 database is missing about 7,000 posts, mostly old postsfrom 6-7 months ago. I have a backup of those posts, although they were in newbb 1.0 tables formats.
My question: How do I merge the data (old & new)? I want to insert into the new tables ONLY the threads/posts that were missing.
For example, one of the tables in question is xoops_bb_posts_text:
newbb 1.0 fields: post_id (unique), post_text;
newbb 2.0 fields: post_id (unique), post_text, edit_post;
Right now I have backup of newbb 1.0 records, full of statements like:
Quote:
INSERT INTO xoops_bb_posts_text (post_id, post_text) VALUES (10207,'My vote goes to Little Caeser. It's a great place for a pizza in Uptown.');
Since the missing posts are scattered throughout the whole record set manually finding/inserting those missing posts would take a whole day or two!