您现在的位置是: 首页 > 运维 mysql 索引过长1071-max key length is 767 byte
mysql 索引过长1071-max key length is 767 byte
2020-05-20 【运维】 2900人已围观 4945次浏览
简介mysql 索引过长1071-max key length is 767 byte
问题
create table: Specified key was too long; max key length is 767 bytes
原因
数据库表采用utf8编码,其中varchar(255)的column进行了唯一键索引
而mysql默认情况下单个列的索引不能超过767位(不同版本可能存在差异)
于是utf8字符编码下,255*3 byte 超过限制
解决
1 使用innodb引擎;
2 启用innodb_large_prefix选项,将约束项扩展至3072byte;
3 重新创建数据库;
my.cnf配置:
default-storage-engine=INNODB
innodb_large_prefix=on
一般情况下不建议使用这么长的索引,对性能有一定影响;
参考文档
https://dev.mysql.com/doc/refman/5.5/en/innodb-restrictions.html
很赞哦! (0)
相关文章
- CentOS 7 安装 Golang 环境
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案
- 【Docker】unauthorized: incorrect username or password
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- Zookeeper 找不到或无法加载主类 org.apache.zookeeper.server.quorum.QuorumPeerMain
- Windows CMD 常用命令
- 查看MySQL默认读取的配置文件
- 迁移 Docker 目录
- nginx 出现 the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in 错误解决方案
- Linux 服务器之间传输大文件(压缩文件、查看MD5、后台传输)
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- idea去掉Smart commands execution提示
- Vue 路由跳转后不在顶部
- Laravel项目出现could not be opened: failed to open stream: Permission denied
- Laravel Dingo/api 出现 The version given was unknown or has no registered routes.报错
- 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
- 获取阿里云CDN真实IP
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- Linux 安装 Tengine
- docker mysql 导入 SQL 脚本
- SpringBoot 启动提示 Requested bean is currently in creation: Is there an unresolvable circular reference?