I'm trying to delete all tables from a database except one, and I end up having the following error:

Cannot delete or update a parent row: a foreign key constraint fails 

Of course I could trial and error to see what those key constraints are and eventually delete all tables but I'd like to know if there is a fast way to force drop all tables (as I'll be able to re-insert those I don't want deleted).

Google aimed me at some site that suggested the following method:

mysql> SET foreign_key_checks = 0;
mysql> drop table ...
mysql> SET foreign_key_checks = 1;

Short answer is it didn't really do the trick since I ended up receiving the same error while I was able to delete some more tables. I've seen on SO ways to get all foreign keys linked to a certain table but that's way too time consuming unless I script it all (which is doable in the case there is no other option)

Database is 4.1 so I can't use DROP DATABASE

Ideas?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Since you are not interested in keeping any data, drop the entire database and create a new one.

link|improve this answer
Forgot to say the database is not mysql 5.x but 4.x which means I'm not able to use that command – johnnyArt Feb 19 '10 at 23:59
1  
I think you should - dev.mysql.com/doc/refman/4.1/en/drop-database.html – a'b'c'd'e'f'g'h' Feb 20 '10 at 0:07
Oh my, I feel so stupid now, I was substituting the word DATABASE with the actual name of the database instead of adding it afterwards, thanks both +1 – johnnyArt Feb 20 '10 at 0:53
feedback

This might be useful to someone ending up here from a search. Make sure you're trying to drop a table and not a view.

SET foreign_key_checks = 0;
-- Drop tables
drop table ...
-- Drop views
drop view ...
SET foreign_key_checks = 1;

basically 0 is to set the checker to off and then 1 is to set the checker back on .... you turn the check off then force drop the table an then turn the checker back on. :)

link|improve this answer
1  
PAT is my friend! – SeanDowney Jun 24 '11 at 23:05
feedback

Drop database exist in all versions of MySQL. But if you want to keep the table structure, here is an idea

mysqldump --no-data --add-drop-database --add-drop-table -hHOSTNAME -uUSERNAME -p > dump.sql

This is a program, not a mysql command

Then, log into mysql and

source dump.sql;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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