重复条目“groser”对于键“PRIMARY”;

发布于 2024-11-07 23:51:32 字数 267 浏览 0 评论 0原文

尝试在本地服务器上导入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北座城市 2024-11-14 23:51:33

例如,从较旧的 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文