Kør denne SQL-sætning (i MySQL-klienten, phpMyAdmin eller hvor som helst) for at hente alle MyISAM-tabellerne i din database.
Erstat værdien af name_of_your_db
variabel med dit databasenavn.
SET @DATABASE_NAME = 'name_of_your_db';
SELECT CONCAT('ALTER TABLE `', table_name, '` ENGINE=InnoDB;') AS sql_statements
FROM information_schema.tables AS tb
WHERE table_schema = @DATABASE_NAME
AND `ENGINE` = 'MyISAM'
AND `TABLE_TYPE` = 'BASE TABLE'
ORDER BY table_name DESC;
Kopier derefter outputtet og kør som en ny SQL-forespørgsel.