Mysql backup & restore
From AWVVO
Backup
mysqldump -u root -p --add-drop-database --delete-all-tables sfc > /tmp/sfc.sql
Restore
mysql -u root -p newdb < backup.sql
mysqldump -u root -p --add-drop-database --delete-all-tables sfc > /tmp/sfc.sql
mysql -u root -p newdb < backup.sql