首页 > 数据库 >MySQL导入数据库1118错误解决方案[ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB

MySQL导入数据库1118错误解决方案[ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB

时间:2023-03-30 14:13:03浏览次数:56  
标签:ERR TEXT some strict innodb BLOB 1118

MySQL导入数据库1118错误解决方案[ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB

编辑sql文件,在开头设置一下innodb_strict_mode为0

SET innodb_strict_mode = 0;

或者找到mysql配置文件mysql.ini

innodb_strict_mode=0
// 可通过show variables like '%innodb_strict_mode%';命令查看

标签:ERR,TEXT,some,strict,innodb,BLOB,1118
From: https://www.cnblogs.com/yingxiaozhu/p/17272476.html

相关文章