vote up 0 vote down star

Hi I use mysql administrator and have restored backup files (backup.sql). I would like to use restore the structure without data and it is not giving me an option to do so. I understand phpadmin provides this. I can not use this however. Any one can tell me an easy way?

flag
Thank you for the response. My first attempt was that, but the insert statements are listed after each table, and there are over 100 tables.function is not integrated in mysql administrator restore function. I have no control over the method of back up. I am looking for a more automated way. Also please note I can not imagine this – Nore Sep 29 at 17:36

3 Answers

vote up 0 vote down

IIRC the backup.sql files (if created by mysqldump) are just SQL commands in a text file. Just copy-paste all the "create ..." statements from the beginning of the file, but not the "insert" statements in to another file and "mysql < newfile" you should have the empty database without any data in it.

link|flag
vote up 0 vote down

there is no way to tell the mysql client to skip the INSERT commands. the least-hassle way to do this is run the script as-is and let it load the data, then just TRUNCATE all of the tables.

link|flag
Thank you all. It seems like, there is no other way but to manually truncate each table after restoring it. – Nore Sep 29 at 19:34
I forgot to add that there are constraints on many tables avoiding any truncate on those tables. – Nore Sep 29 at 20:34
vote up 0 vote down

you can write a script to do the following:

1 : import the dump into a new database.

2 : truncate all the tables with a loop.

3 : export the db again.

4 : now u just have the structure

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.