How to Dump only specific table from a database like if my Database has 10 table's and i want to dump only 3 tables of my choice...is it possible with "mysqldump" command...
+3
A:
Usage: mysqldump [OPTIONS] database [tables]
i.e.
mysqldump -u username -p db_name table1_name table2_name table3_name > dump.sql
Lauri Lehtinen
2010-06-07 05:58:38
yeah it worked...thank you @Lauri Lehtinen
Harish Kurup
2010-06-07 06:07:30