Mysql dump error?

The mysqldump is a program, it cannot be executed from the mysql console. Run it from the shell Have a look at the syntax reference user=user_name, -u user_name password=password, -ppassword As you see there is no space between -p and password. So, your command line should be like this: shell mysqldump -u -p.

The mysqldump is a program, it cannot be executed from the mysql console. Run it from the shell. Have a look at the syntax reference.

--user=user_name, -u user_name --password=password, -ppassword As you see there is no space between -p and password. So, your command line should be like this: >shell mysqldump -u -p ... or >shell mysqldump --user= --password= ...

You are missing the target backup file name: # mysql dir/bin/mysqldump -u username -p password --databases databasename > /tmp/databasename. Sql MySQL Commands.

The correct syntax is mysqldump -u username -ppassword databasename > backupfile. Sql you should add the > backupfile. Sql the other error is believe your system doesn't recognize the mysqldump path and you should go directly to bin folder from mysql installation.

There should be no space between -p and your password – minaz Sep 7 at 22:14 yes you are right :) – Mihai Iorga Sep 8 at 5:26.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions