Dec 21, 2010

MySQL Database Backup using mysqldump command.

Since its release in 1995, MySQL has became one of the most commonly used database in Internet world. A lot of small and medium businesses uses MySQL as their backend db.  Its popularity for use with web applications is closely tied to the popularity of PHP, which is often combined with MySQL. Wikipedia runs on MediaWiki software, which is written in PHP and uses a MySQL database. Several high-traffic web sites use MySQL for its data storage and logging of user data, including Flickr, Facebook, Wikipedia, Google, Nokia and YouTube.
MySQL provide a great command line utility to take backup of your MySQL database and restore it. mysqldump command line utility is available with MySQL installation (bin directory) that can be used to achieve this.

Getting backup of a MySQL database using mysqldump.

Use following command line for taking backup of your MySQL database using mysqldump utility.


mysqldump –-user [user name] –-password=[password] [database name] > [dump file]
  
or
  
mysqldump –u[user name] –p[password] [database name] > [dump file]


Example:


mysqldump –-user root –-password=myrootpassword db_test > db_test.sql
  
or
  
mysqldump –uroot –pmyrootpassword db_test > db_test.sql


Backup multiple databases in MySQL.

mysqldump –u[user name] –p[password] [database name 1] [database name 2] .. > [dump file]
Example:


mysqldump –-user root –-password=myrootpassword db_test db_second db_third > db_test.sql



Backup all databases in MySQL.


shell> mysqldump –u[user name] –p[password] –all-databases > [dump file]


Backup a specific table in MySQL.


shell> mysqldump --user [username] --password=[password] [database name] [table name] \
> /tmp/sugarcrm_accounts_contacts.sql


Example:


shell> mysqldump --user root --password=myrootpassword db_test customers \
> db_test_customers.sql

Restoring MySQL database.
The mysqldump utility is used only to take the MySQL dump. To restore the database from the dump file that you created in previous step, use mysql command.


shell> mysql --u [username] --password=[password] [database name] < [dump file]

Example:


shell> mysql --user root --password=myrootpassword new_db < db_test.sql

No comments:

Post a Comment