本文主要是介绍MySQL数据库index column size too large. the maximum column size is 767 bytes问题解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
index column size too large. the maximum column size is 767 bytes
报错主要出在mysql5.6版本和MariaDB10
1.检查配置文件 my.cnf
检查这3条配置文件,没有就添加上
innodb_large_prefix = 1
innodb_file_per_table = 1
innodb_file_format = Barracuda
2.创建表SQL语句中检查row_format
值改成
row_format=dynamic
注意:用Navicat的数据传输功能的,依然还是会失败。先将数据库转储成Sql文件,检查步骤2后,再导入即可
这篇关于MySQL数据库index column size too large. the maximum column size is 767 bytes问题解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!