Restore MySQL database from a backup file
There are many reasons you would want to restore a database from a backup file… But you should also test this on a test server just to make sure that your database backups are working correctly. Here’s the syntax:
mysql -h hostname -u username -pthepassword databasename < dumpfile.sql
Here’s an example:
mysql -h localhost -u root -p72aDufi8 db01 < thedumpfile.sql

Daily Email Updates
You can get our how-to articles in your inbox each day for free. Just enter your name and email below:


do we use a space between ‘p’ and the password or not ?
thanks for ur greate tutos.
/abdo