Sqlyog is a wonderful software!
Here is my problem:
When trying to remove a foreign key restraint from an innodb table, I received the following error: Error No. 1005: Can't create table 'c:mysqltemp#sql314_dd_4.frm' (errorno: 140)
A look at the history showed this query:
create temporary table if not exists `db`.`sqlyog_2864` (
….
`sample_id` smallint(6) NULL ,
…
FULLTEXT KEY `sample_id_ind` ( `sample_id` ),
…
)
The query works if “FULLTEXT” is removed. I am also puzzled at the need of adding Fulltext index to the 'sample_id' column, since in the original table it is only indexed but not fulltext indexed.
Thanks for looking into this.