I have dumped my database with the following command: mysqldump -uuser -ppassword db_name > file
then i completely removed my database: drop database db_name;
then i created a new database: create database db_name;
and then i tried to restore the db with the following command: mysqldump -uuser -ppassword db_name < file
The problem is that dump does not create tables and loads data in them and so the database remains empty however it does show a message like dump completed "date time"
what could be the reason for this???..please suggest
mysql -uXXX -pXXX < dump_file.sql. (i.e.:mysqldumpis only for exporting data, not importing it. – middaparka Feb 11 '11 at 19:58