Restoring your MySQL Database
Restoring your MySQL Database To restore the database you should do two steps create an appropriately named database on the target machine load the file using the file using the mysql command $ mysql -u [uname] -p[pass] [db_to_restore] < [backupfile.sql] Now you can restore your tut_backup.sql file to the Tutorials database. $ mysql -u root -p […]