重复条目“groser”对于键“PRIMARY”;
尝试在本地服务器上导入 Drupal 站点数据库转储后,出现以下错误。
导入在 search_total 表处停止。我在 search_total 中查找了“groser”这个词,我找到了它并且没有重复。
另一方面,我发现了“großer”这个词,这让我相信 Mysql 将“ß”解释为“s”。
search_total MyISAM utf8_general_ci
关于如何处理这个问题有什么想法吗? 谢谢!
I get the following error after attempting to import a Drupal site database dump on my local server.
The import stops at the search_total table. I have looked in search_total for the word "groser" which I have found and isn't duplicated.
On the other hand I have found the word "großer" which leads me to believe that Mysql interprets the "ß" as a "s".
search_total MyISAM utf8_general_ci
Any ideas on how to deal with this issue?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,从较旧的 MySQL 版本 (5.0) 导出到较新版本 (5.1) 时,这是一个已知问题。如果您并不真正关心搜索表中是否有完全相同的数据(例如,如果您正在设置本地开发环境,则应该无关紧要),您可以使用 -f 标志忽略这些重复项。
请参阅 http://linuxadminzone.com/ignore-mysql-error-while -执行批量语句/
That is a known issue when exporting from an older MySQL version (5.0) to a newer one (5.1) for example. If you don't really care about having the exact same data in your search table (should be irrelevant if you're setting up a local development environment for example), you can ignore these duplicates with the -f flag.
See http://linuxadminzone.com/ignore-mysql-error-while-executing-bulk-statements/