View Single Post
Old 02-28-2006, 10:02 PM   #2 (permalink)
theFez
Crazy
 
Location: here and there
for the problem importing the IPB backup, if you add the line
Code:
drop table if exists table_name;
just before each create table call, then your ddl code will run and the table will be re-created and re-populated.
I doubt this will solve your problem however. Most likely between versions the database design changed and your old database is out of date. Also most likely the IPB should have the tools needed to update the database. So, if you can, get your hands on whatever IPB uses to migrate old databases to the new format.
Next, alter the IPB generated script as i suggested above and get that database up and loaded with all your data.
Finally, run the IPB tool to migrate your database to the new format.

If IPB won't give you the tools to migrate the db, you would have to write your own.
__________________
# chmod 111 /bin/Laden
theFez is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62