Backup and Restore MySQL Data
Login | Register RSS
01/30/2012 - MySQL 

Backup and Restore MySQL Data

Here is how you can easily backup & restore MySQL database. 

Backup MySQL database:

mysqldump –u root –p password db_1 > db_1.sql

Restore MySQL database:

mysqldump –u root –p password db_1 < db_1.sql


If you like this site or any of its content, please help promote it. Use the social media buttons below to help spread the word. Don't forget to post in the comments section.

  Print   Email