I am transferring a fairly simple table to my live db server, and this gives me this strange error when I try to create an InnoDB table, creating a table:
CREATE TABLE `cobertura` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `cep` int(8) unsigned zerofill NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `idx_cep` (`cep`) ) ENGINE=InnoDB;
If I changed the engine to MyISAM, it works, if I changed the table name to something else, it works. If I create a table as MyISAM and make a engine that changes InnoDB, I will get error 121. I tried to look at the folder where mysql stores the files to see if there is garbage there, nothing.
Any ideas?
source share