- 论坛徽章:
- 0
|
这是读mysql深入浅出一书练习第二章时遇到的问题。
由于书中使用的版本是mysql 5.0.x,按这个版本是不会出现下面的问题的。
而我使用的是mysql 5.1.26-rc,碰到了这个问题,操作是这样的
mysql> create table emp (ename varchar(10),hiredate date,sal decimal(10,2),deptno int(2));
mysql> alter table emp modify deptno int(3); //没有问题
mysql> alter table emp modify ename varchar(20); //出现了下面的提示错误
ERROR 1034 (HY000): Incorrect key file for table 'emp',try repair it
再尝试DESC emp; select * from emp;均报错。
翻译过来是:表emp中相应的键文件不正确,请尝试修复它。
mysql> check table emp;
提示出错:
+-----------+-------+----------+------------------------------------------------ ------+
| Table | Op | Msg_type | Msg_text |
+-----------+-------+----------+------------------------------------------------ ------+
| test1.emp | check | Error | Incorrect key file for table 'emp'; try to repa ir it |
| test1.emp | check | error | Corrupt |
+-----------+-------+----------+------------------------------------------------ ------+
mysql> repair table emp;
同样错误:
+-----------+--------+----------+------------------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+-----------+--------+----------+------------------------------------------------------+
| test1.emp | repair | Error | Incorrect key file for table 'emp'; try to repair it |
| test1.emp | repair | error | Corrupt |
+-----------+--------+----------+------------------------------------------------------+
无法修复。
------------------------------------------------
而且只有在修改VARCHAR字段时出现这个问题。
郁闷不得其解...... |
|