Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
titleMySQL
#To make a backup of the DB
mysqldump -u [uname] -p [pass] db_name > db_backup.sql
 
#To restore the backup
mysql -u [uname] -p [pass] db_name < db_backupfile.sql

...