I am using windows XP. I am creating a table in phpMyAdmin using its built-in create table feature, my database name is ffffd.
ffffd
It generates the following
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