MyISAM Sucks.
The solution is as follows:
- Log into MySQL
- Change to the database where the table resides
- Execute the following:
ALTER TABLE [TableName] ENGINE=InnoDB;
Your MyISAM issues are now history.
MyISAM Sucks.
The solution is as follows:
ALTER TABLE [TableName] ENGINE=InnoDB;
Your MyISAM issues are now history.