I wanted to know if it was possible can do a db dump of all the tables in a database, but leaving a couple of tables specified on the command line. this is for mysql. i know there is one for adding specific tables on an sql, but i dont know if you can exclude specific tables. Thanks in advance.
Asked
Active
Viewed 195 times
1 Answers
2
Mysqldump has an --ignore-table option.

JOTN
- 6,120
- 2
- 26
- 31
-
awesome, i was looking in the man page and it didnt have it, but it did on --help page. i do have a question, how is this set up on the --help page its --ignore-table=database.table, what if i want multiple tables? – rbz Nov 23 '10 at 00:12
-