Home  >  Article  >  Database  >  mysqldump 导出的sql文件导入时提示Unknown command

mysqldump 导出的sql文件导入时提示Unknown command

WBOY
WBOYOriginal
2016-06-07 17:52:472345browse

昨天有linux中把备份好的数据想利用mysqldump 导出的sql文件导入时提示Unknown command,经过多查找终于解决了这个问题,下面我来分享的我经验。

最初我就这样导入数据

 代码如下 复制代码

#mysql forum Enter password:123456

结果出现错误

ERROR at line 1410: Unknown command ‘[’.

经过分析原来是编码错误,后来在导入的时候指定字符集 --default-character-set=utf8,再次导入备份文件,一切

顺利。

命令如下:

 代码如下 复制代码

mysql -uroot -p --default-character-set=utf8  test_server

就KO了

也可以尝试使用

 代码如下 复制代码

mysql>source d:文件名.sql进入尝试导入哦


如果你有数据库我们可以直接对拷即可了,在windows中就不介绍了,在linux中如下

 代码如下 复制代码

mysqldump -hhost1 xx | mysql -hhost2

从host1导出库xx,然后写入host2

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn