Mysql5.7数据库降级到5.6版本
从MySQL 5.7版本的数据库导出sql文件后,导入到MySQL 5.6版本的数据库中报如下错误
Specified key was too long; max key length is 767 bytes |
错误提示索引字段长度首先,最大长度767 bytes
在*.sql文件中增加如下设置:
首先设置MySQL的全局参数innodb_large_prefix=ON,将InnoDB表的索引长度上限扩大到3072个字节
set global innodb_large_prefix = ON; |
指定innodb文件格式为Barracuda
set global innodb_file_format=Barracuda; |
最后成功导入
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 👋Blog!
评论