Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie konvertiere ich alle Tabellen von MyISAM in InnoDB?

Führen Sie diese SQL-Anweisung (im MySQL-Client, phpMyAdmin oder wo auch immer) aus, um alle MyISAM-Tabellen in Ihrer Datenbank abzurufen.

Ersetzen Sie den Wert von name_of_your_db Variable mit Ihrem Datenbanknamen.

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;

Kopieren Sie dann die Ausgabe und führen Sie sie als neue SQL-Abfrage aus.