当前位置:   article > 正文

MySQL Row size too large (> 8126)_row size too large (> 8126). changing some columns

row size too large (> 8126). changing some columns to text or blob or using

错误信息

ERROR 1118 (42000) at line 901: Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline.

错误原因

  • 这个问题是由于 MySQL 8.0 的行大小限制导致的。在 MySQL 8 中,行大小限制为 8126 字节。如果表的行大小超过此限制,则会出现此问题。

错误解决

  1. 找到MySQL配置文件my.cnf
  2. 在里面增加一行innodb_strict_mode=0
[mysqld]
innodb_strict_mode=0
  • 1
  • 2
  1. 重启MySQL
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/991005
推荐阅读
相关标签
  

闽ICP备14008679号