It should have been easy... I have a database with about 20 tables in it, all in MyISAM. I wanted to convert them to InnoSB, so I executed:
alter table xxxx engine = InnoDB;
As a result I get
ERROR 1050 (42S01): Table './yyy/xxx' already exists
I tried several of the tables, and thought it would happen with all, till I hit two tables which got converted correctly. A SHOW TABLE STATUS confirmed the correct conversion. Strangely enough several of the other tables had a very similar or equal structure but didn't convert.
MySQL Version is 5.5.27... I tried through phpMyAdmin, and directly through mysql commands. Same result.
Note: I had found the thread indicated below, and here are some of the tests: - I did mysqlchk the table - it's ok. - The DROP TABLE suggested works, table disappears, - REPAIR TABLE then reports it can't file the table (as is logical). - If I re-instate the table from a backup, Same error re-appears.
Could a parallel InnoDB table exist, which I can't see?