There are times when you only want to take partial dump of a mysql table. You can use mysqldump command with one extra option "--where". You will have to provide your where clause (partial dump condition) in the "--" where option. Below is the command to take a partial dump of a table. Related Posts: … Continue reading partial table dump using mysqldump
mysqldump
Mysql Dump in XML format
To take dump in XML format you have to provide an extra option in default mysqldump command. This can be useful in cases where you want to migrate your MySQL database to some other database. You can use below command to take MySQL Database dump in XML format. or For example if you have a database … Continue reading Mysql Dump in XML format