MySQL: #126 - Incorrect key file for table

前端 未结 17 1917
臣服心动
臣服心动 2020-11-29 02:18

I got the following error from a MySQL query.

#126 - Incorrect key file for table

I have not even declared a key for this table, but I do have i

17条回答
  •  無奈伤痛
    2020-11-29 02:49

    I fixed this issue with:

    ALTER TABLE table ENGINE MyISAM;
    ALTER IGNORE TABLE table ADD UNIQUE INDEX dupidx (field);
    ALTER TABLE table ENGINE InnoDB;
    

    May helps

    • Refs: MySQL: ALTER IGNORE TABLE gives "Integrity constraint violation"

提交回复
热议问题