Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mysql的最大查询大小是多少?有时,当我发出太长的查询时,服务器会停止工作。
您可以通过以下方式检查当前的服务器设置:
SHOW VARIABLES LIKE 'max_allowed_packet';
这会给你以字节为单位的答案。例如max_allowed_packet=1048576或1 MiB
max_allowed_packet=1048576
1 MiB
要增加max_allowed_packet, 打开
max_allowed_packet
my.ini/my.cnf节下[mysqld]。
my.ini/my.cnf
[mysqld]
更改完成后,您必须重新启动服务器。