CentrioHost Blog

Stories and News from IT Industry, Reviews & Tips | Technology Blog


Backup and restore a mysql table using mysqldump

There are two  methods for taking backup of a single table from a database and restore in into another database

1) Method 1

In this method you can take  a backup of a database table and  restore into another db. But this restoration will remove the  already existing  table and recreate it in the new database .

#  mysqldump old_db table  > old_db.table.sql
#  mysql new_db < old_db.table.sql

2)Method 2

In this method you can table only the backup of database table  data ( not the sql scheme )  and restore it into new database without removing the old data in new database

#  mysqldump -t old_db table  > old_db.table.sql
#  mysql new_db << old_db.table.sql

Make sure to table backups of new database before doing the restoration

Subscribe Now

10,000 successful online businessmen like to have our content directly delivered to their inbox. Subscribe to our newsletter!

Archive Calendar

SatSunMonTueWedThuFri
1234567
8910111213