Bulk convert InnoDB tables to MyISAM
// produces some handy ALTER statements
// I think there's a way to this w/ mysqladmin but I couldn't find it.
// I think there's a way to this w/ mysqladmin but I couldn't find it.
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=MyISAM;') FROM information_schema.tables WHERE engine = 'InnoDB';