mysql字节长度限制报错处理方法

报错如下:
ERROR 1118 (42000) at line 274: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB pr
efix of 0 bytes is stored inline
或者
ERROR 1118 (42000) at line 1240: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs

解决方法:
1.my.cnf文件的[mysqld] 添加配置

max_allowed_packet = 67108864
innodb_page_size = 64KB

注:innodb_page_size最大为64kb,然后重启mysql,修改innodb_page_size后,重启前需要清空data下的文件,否则会报错。

2.登录mysql,关闭 innodb_strict_mode

SET GLOBAL innodb_strict_mode = 0;

然后试下能否创建表成功,如果不能,再进行第三步

3.建表语句把utf8mb4修改为utf8,可减少字节数

ENGINE=InnoDB DEFAULT CHARSET=utf8

或者再增加ROW_FORMAT=COMPRESSED

创建完成后,最后将innodb_strict_mode 复原

SET GLOBAL innodb_strict_mode = 1;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值