博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL导入数据遇到Error Number: 1467 Failed to read auto-increment value from storage engine错误...
阅读量:5050 次
发布时间:2019-06-12

本文共 1018 字,大约阅读时间需要 3 分钟。

MySQL导入数据遇到Error Number: 1467 Failed to read auto-increment value from storage engine错误

创建表的语句
CREATE TABLE `test` ( `id` int unsigned auto_increment not null comment 'id', `uuid` varchar(255) NULL COMMENT 'uuid',  `ctime` timestamp NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP COMMENT 'create_time’, PRIMARY KEY (`id`) )ENGINE=innodb DEFAULT CHARSET=utf8 COMMENT 'use for test';
导入数据的过程
load data local infile "/hah/test.txt" ignore into table test fields terminated by '\t';
错误提示
ERROR 1467 (HY000): Failed to read auto-increment value from storage engine
原因

Google了一下,在找到了一个答案:

use the command SHOW CREATE TABLE tablename;, I get

table name {`id` int(11) NOT NULL AUTO_INCREMENT, ......}ENGINE=InnoDB AUTO_INCREMENT=100000000000 DEFAULT CHARSET=utf8

You will see the length of 100000000000 is 12, beyond the limit 11.

于是我看了一下自己的表结构,发现:

`id` int(10)...ENGINE=InnoDB AUTO_INCREMENT=4294967295

找到了原因,修改一下这里就好了:

ALTER TABLE `YOUR_TABLE`  AUTO_INCREMENT =1

转载于:https://www.cnblogs.com/wswang/p/7718030.html

你可能感兴趣的文章
学习python:day1
查看>>
css3动画属性
查看>>
第九次团队作业-测试报告与用户使用手册
查看>>
Equal Sides Of An Array
查看>>
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>
Flink独立集群1
查看>>
iOS 8 地图
查看>>
20165235 第八周课下补做
查看>>
[leetcode] 1. Two Sum
查看>>
iOS 日常工作之常用宏定义大全
查看>>
PHP的SQL注入技术实现以及预防措施
查看>>
MVC Razor
查看>>
软件目录结构规范
查看>>
Windbg调试Sql Server 进程
查看>>
linux调度器系列
查看>>