导入sql文件时出现以下错误
ERROR: ASCII '\0' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode.
Set --binary-mode to 1 if ASCII '\0' is expected. Query: ''.
我该如何解决这个问题?
导入sql文件时出现以下错误
ERROR: ASCII '\0' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode.
Set --binary-mode to 1 if ASCII '\0' is expected. Query: ''.
我该如何解决这个问题?
3条答案
按热度按时间raogr8fs1#
请尝试以下内容:
并确保您sql文件is not zipped。
kb5ga3dv2#
我遇到了这个问题,SQL文件是在一个有效的ISCII格式,我解决了如下:
1-在shell中,使用
file
命令检测转储文件中包含的数据类型:file db.sql
个得到如下输出:
db.sql: Little-endian UTF-16 Unicode text, with very long lines, with CRLF line terminators
2-使用iconv将现有转储文件转换为UTF8(ASCII):
iconv -f utf-16 -t utf-8 db.sql > db_utf8.sql
然后导入新文件。
kpbpu0083#
我只是有这个问题,因为文件是gzip的。我解压它,没有进一步的问题。