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 need to import multiple dump files to mysql using windows command prompt.

How can I import files.

mysql -hlocalhost -uroot -proot -P3306 --databases db1,db2<db1.sql,db2.sql

I tried like this but its not working. How can i write this kind of a command in a bat file.

Thanks

share|improve this question

1 Answer

use two commands (and I don't think there is a --databases option in mysql, are you confusing that with mysqldump?).

mysql -hlocalhost -uroot -proot -P3306 db1 < db1.sql
mysql -hlocalhost -uroot -proot -P3306  db2 < db2.sql
share|improve this answer
Hi its creating only second database :( – learner Nov 18 '11 at 12:26
do you get an error? is there a "create database" statement in your db1.sql? – Gryphius Nov 18 '11 at 12:27
yes I have. if I execute that bat file its not showing db1.sql. Do we need to give any separation between that two satements – learner Nov 18 '11 at 15:12
hmm.. I don't see a reason why the 2nd statement would be executed but not the first.it's been a while since I've done scripting on windows, maybe someone else has an idea. – Gryphius Nov 18 '11 at 15:26

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.