I've searched for hours, there are many posts or tutorials but I couldn't run my batch script.

on dos prompt this code works fine:

-u root -h localhost -p******** siir_07 dumper.sql

but this gives error with batch:

"c:\program files\mysql\mysql server 5.5\bin\mysql.exe" "-u root -h localhost -p******** siir_07 dumper.sql"

the error is:

ERROR 1045 (28000): Access denied for user ' root -h localhost -p** siir_07 dumper.s'@'localhost' (using password: NO)

link|improve this question

79% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Z:\test.bat :

Z:\webserver\mysql\bin\mysql.exe -u test -p test < test.sql

When I run it from command line, everything is OK. So, try to remove quotes and redirect input using <.

link|improve this answer
thanks for your answer. it works great now – nikel Jan 12 at 8:03
feedback

it thinks this is your username

' root -h localhost -p** siir_07 dumper.s'

try changing the quotes around in your batch script

link|improve this answer
thanks for your reply. it just outputs mysql help text. i ve seen this before while i was doing trial and error. – nikel Jan 12 at 6:52
feedback

you should redirect input from file using < and remove extra spaces:

mysql -uroot -p*** < dumper.sql

I would also suggest putting the username password, and most probabry charset parameters in a separate INI file and use it as follows:

 mysql --defaults-extra-file=myconf.ini < dumper.sql
link|improve this answer
thanks for the reply. i fixed it by removing last two quotes. – nikel Jan 12 at 8:02
feedback

Your Answer

 
or
required, but never shown

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