Problem: My db-host suddently switched my mysql db from one server to another. Unfortunately I has 1 table that was running ISAM, all other tables are MyISAM. After the switch from one server to another the ISAM table is dead!
PHP sends "Lost connection to MySQL server during query" when trying to SELECT from the dead table.
In PHPMyAdmin a healthy tables has values for the columns accordingly (Records, Type, Collation) 885 MyISAM latin1_swedish_ci
The died table just has: "in use" writtin all over the three columns.
If i try to run view the structure of the table:
SHOW FULL FIELDS FROM table_name
;
I get a: 1017 - Can't find file: 'table_name' (errno: 2)
Thank you!