Convert tables from InnoDB to MyISAM
-
- Compulsive poster
- Posts: 71
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Fri Feb 21, 2014 10:24 am
Convert tables from InnoDB to MyISAM
Does anyone have any suggestions for converting a bunch of InnoDB tables to MyISAM? I can of course do each one by hand, but I have 177 tables so that might take a while.
Re: Convert tables from InnoDB to MyISAM
You could always get a complete dump of the database, then replace all InnoDB references with MyISAM, then re-import the dump file. If any of your tables are using foreign keys or if you have software that relies on transactions in InnoDB, you will need to leave these tables be, as MyISAM does not support these features.