partial dump - Mysql Views : 1859
Tagged in : Mysql
3 0
Send mail
You can create dump of partial table by using where condition in mysql.

Syntax:
mysqldump -u root -p database-name table-name -w"condition" > database-name

Example:
mysqldump -u root -p conif_new sitemap -w"sid<10000" > conif_new
By kalai, On - 2009-07-21



    Login to add Comments .