views:

45

answers:

1

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
yeah it worked...thank you @Lauri Lehtinen
Harish Kurup