一键执行sql脚本

一键执行sql脚本(其中括号中的均需指定):
mysql -h(ip) -u(用户名) -p(密码) (数据库名) -P3306 –default-character-set=utf-8 -A <”执行脚本.sql”

登录mysql,报错ERROE 1045(28000):Access denied for user ‘root’@’localhost’(using password:YES)
看看我的登录命令:mysql -h(ip) -uroot -p(密码) tempdb -P3306 –default-character-set=utf-8 -A <”执行脚本.sql”
翻译下错误:拒绝访问的用户。
最后发现我的密码写错了,很尴尬。

你可能感兴趣的:(数据库)