如何在 Windows 7 中使用命令行执行大型 MySQL 数据插入脚本文件?
我是 MySQL 新手。我感兴趣如何通过命令行执行此操作;我已经尝试过,但控制台输出中没有记录,并且字符集不是 utf-8
。
I'm new to MySQL. I am interested how to do this via command line; I've tried but I get NO logging in the console output and the character set is not utf-8
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者
您的命令中可能还需要
-u username -p
。mysqldump 文档
or
You probably need
-u username -p
, too in your command.mysqldump doc
由于您的 SQL 脚本不包含任何字符集配置指令,因此
mysql
仅以其默认字符集 Latin1 运行。要更改默认字符集,请像这样启动mysql
:Since your SQL script doesn't contain any character set configuration directives,
mysql
just runs in its default character set Latin1. To change the default character set, startmysql
like this:如果您遇到访问问题
例如 ERROR 1045 (28000): Access Beenied for user 'ODBC'@'localhost' (using password: NO)
希望有帮助!
could be used if you are getting access issues
like ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)
hope that helps !!