I have dumped my database with the following command:
mysqldump -uuser -ppassword db_name > file
then I completely removed my database:
I like to do the following to restore.
mysql -uuser -ppassword create database db; use db; source dump.sql;