Terminal Window:
mysql> use databasename;
// databasename – this is the database name where you want to reload the backup.
// In MySQL, now the active selected database will be databasename
mysql> source /backup/db.sql
//backup will start from db.sql
There are 0 comments