I am using the following command:
mysqldump -alv -h 123.123.123.123 --password=P@ssw0rd --user=UsernameHere --add-drop-table -p DatabaseSchemaName > dump.sql
Then it asks me to Enter Password. Is there I'm doing wrong when specifying the password in the command?
The password I'm entering is definitely the proper password.
-pat the end? That's the password switch. You're overriding your original password switch on the far left because of it. (Because it's blank, it's also asking for a password) – qweet Mar 5 '12 at 17:11