Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to restrict certain tables from the mysqldump command?

For example, I'd use the following syntax to dump only table1 and table2:

mysqldump -u username -p database table1 table2 > database.sql

But is there a similar way to dump all the tables except table1 and table2? I haven't found anything in the mysqldump documentation, so is brute-force (specifying all the table names) the only way to go?

share|improve this question

1 Answer

up vote 171 down vote accepted

You can use the --ignore-table option. So you could do

mysqldump -u username -p database --ignore-table=database.table1 --ignore-table=database.table2 > database.sql
share|improve this answer
1  
Thank you! Worked perfectly... I don't know how I missed that. – Zac Jan 8 '09 at 17:39
4  
is there any way to just skip the table contents? the structure i want to backup. – andufo Jun 24 '10 at 0:00
1  
You can use the --no-data=true option, but I don't know if you can do that on a per table level. – Brian Fisher Jul 2 '10 at 15:42
23  
if the database name is not set for each --ignore-table then you will get a 'Illegal use of option --ignore-table=<database>.<table>' error. Make sure you always declare the database! – supajb Oct 31 '11 at 23:56
6  
if you want to ignore some tables data, but still dump their structure, you can run mysqldump again fo those tables, and concatenate it onto the backup you just created – carpii Jun 25 '12 at 15:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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