how to overcome ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) permanently

前端 未结 14 1627
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-23 13:49

when am trying to open mysql in windows cmd by typing mysql. the following error is occuring.

ERROR 1045 (28000): Access denied for user ODBC@localhost (usin         


        
14条回答
  •  一个人的身影
    2020-12-23 14:26

    1. open command line (run as admin)
    2. go into Mysql server bin folder
    3. run command: mysqldump -u root -p mydbscheme > mydbscheme_dump.sql
    4. give your password here against root.

    It will work perfect !!

提交回复
热议问题