Quote:
Originally Posted by healdem
what permissions have been GRANTed to MyUsername.
you can review the permissions easily enough in MySQLAdministrator
|
Thank you for your reply healdem. I finally figured out the cause of my two problems:
1. Regarding my passwords not being accepted sometimes, the reason was the MySQL service was either uninstalled or the service was not running. So from now on I'll make sure the MySQL service is installed and running.
2. Regarding the mysqldump problem, I did not use the correct user name, which is root. So the correct commands in the Windows Command Prompt are as follows:
Quote:
|
mysqldump -u root -p databaseName > "C:\MySQLBackupFolder\databaseName.sql"
|
If after entering your password, nothing happens, then it worked.
I hope this helps anyone else who had the same problem!