MySQL 服务器已执行大型脚本文件

发布于 2024-11-28 03:25:31 字数 289 浏览 3 评论 0原文

请帮助我消除这个错误 当我同时运行一些大量的 mysql 脚本时,我遇到了这种错误

错误:2006 MySQL 服务器已消失错误:1153 收到数据包 大于“max_allowed_pa​​cket”字节

如何摆脱此错误,我使用 Navicat mysqlWAMP 服务器? 在运行脚本时,我选择出错时继续,以便脚本仍在运行,并在消息日志中显示错误消息和值。这会起作用吗?我可以稍后运行错误值吗?

Please help me to get rid of this errors
While i run some large number of mysql scripts at once i got this kind of errors

ERROR: 2006 MySQL server has gone away Error: 1153 Got a packet
bigger than 'max_allowed_packet' bytes

How to get rid of this error, im using Navicat mysql and WAMP server??
In running scripts i choose continue on error so scripts still running with error msgs and values in Message log. Will this work and can i run the error values later??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

东京女 2024-12-05 03:25:31

尝试从 mysql 终端使用这些命令

set global max_allowed_packet=1000000000; 
set global net_buffer_length=1000000; 

try using these commands from mysql terminal

set global max_allowed_packet=1000000000; 
set global net_buffer_length=1000000; 
深爱不及久伴 2024-12-05 03:25:31

ayush的答案解决了这个问题,但是如果您在执行SQL文件时取消选中对话框中的“每次执行中运行多个查询”选项,它也可能会解决这个问题(但执行将需要更长的时间来运行)。

The answer from ayush solves it, but if you un-check the option "Run multiple queries in each execution" in the dialog box when executing SQL file it might do the trick as well (but the execution will take longer to run).

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