Bug? #1146 - Table 'xxx.xxxxx' doesn't exist

前端 未结 18 1728
春和景丽
春和景丽 2020-11-29 05:49

I am using windows XP. I am creating a table in phpMyAdmin using its built-in create table feature, my database name is ffffd.

It generates the following

18条回答
  •  独厮守ぢ
    2020-11-29 06:33

    I got this issue after copying mytable.idb table file from another location. To fix this problem I did the following:

    ALTER TABLE mydatabase.mytable DISCARD TABLESPACE;
    

    Copy mytable.idb

    ALTER TABLE mydatabase.mytable IMPORT TABLESPACE;
    

    Restart MySql

提交回复
热议问题