Index column size too large

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Index column size too large相关的知识,希望对你有一定的参考价值。

问题描述】:
因为业务需要,需要修改字段的长度,但是修改过程中出现如下问题:

mysql> alter table house_8090 modify house_url varchar(765);

ERROR 1709 (HY000): Index column size too large. The maximum column size is 767 bytes.
mysql>

问题分析】:
根据报错提示可以看出是因为索引列太大导致。

解决办法】:
根据报错提示,尝试解决:
先检查一下是不是数据库被限制了索引的大小
SHOW variables like ‘innodb_large_prefix‘

如果查询的值是OFF的话 执行下面命令

SET GLOBAL INNODB_LARGE_PREFIX = ON;

执行完了 之后 还得查看当前的innodb_file_format引擎格式类型是不是BARRACUDA

执行 SHOW variables like ‘innodb_file_format‘

如果不是的话则需要修改 SET GLOBAL innodb_file_format = BARRACUDA;

但是再次执行上面的修改语句还是会报相同的错误。

查了下资料,发现需要更改表的结构:

alter table house_8090 row_format=dynamic;
alter table house_8090 row_format=compressed;

再次执行后,可以正常执行。
技术分享图片

以上是关于Index column size too large的主要内容,如果未能解决你的问题,请参考以下文章

MySQL - Row size too large (> 8126). Changing some columns to TEXT or BLOB

MySQL - Row size too large (> 8126). Changing some columns to TEXT or BLOB

数据库报错 [ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_F

mysql 主从同步故障解决   Error 'Row size too large (> 8126).

1074, "Column length too big for column 'err_solution' (max = 21845); use BLOB or TEXT

ERROR 1406 : Data too long for column 解决办法