码迷,mamicode.com
首页 > 数据库 > 详细

【BUG】插入或者更新超过限制后写入数据库失败

时间:2016-12-05 20:00:12      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:微软   var   variable   database   mysql   type   under   d3d   man   

 
Error Code: 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘Usage: mysqldump [OPTIONS] database [tables]   OR mysqldump [OPTIONS] --databa‘ at line 1
报错: Error Code: 2006 - MySQL server has gone away
 
mysql根据配置文件会限制server接受的数据包大小。
有时候大的插入和更新会受max_allowed_packet 参数限制,导致写入或者更新失败。
 

查看目前配置

SHOW VARIABLES LIKE ‘%max_allowed_packet%‘;
技术分享
 
解决方法
SET GLOBAL  max_allowed_packet=67108864;
SET GLOBAL  net_buffer_length=10000;   
 
注意:该值设置过小将导致单个记录超过限制后写入数据库失败,且后续记录写入也将失败 

【BUG】插入或者更新超过限制后写入数据库失败

标签:微软   var   variable   database   mysql   type   under   d3d   man   

原文地址:http://www.cnblogs.com/zhutouying/p/6134724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!