Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
You simply need to use mysql -uXXX -pXXX < dump_file.sql. (i.e.: mysqldump is only for exporting data, not importing it. – middaparka Feb 11 '11 at 19:58

2 Answers

up vote 7 down vote accepted

mysqldump is for dumping the database. You've created a new empty database, and then dumped that empty database. Use mysql instead to reload your dump

mysqldump db > dump.sql
mysql drop/create
mysql db < dump.sql

would be the basic command sequence.

share|improve this answer

I like to do the following to restore.

mysql -uuser -ppassword
create database db;
use db;
source dump.sql;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.