Comments - Disabling storage engines

11 years, 1 month ago Daniël van Eeden

To make sure that no table is using the engine you want to disable: First check information_schema.tables.

mysql> SELECT engine,GROUP_CONCAT(DISTINCT TABLE_SCHEMA) Table_Schema_List,COUNT(*) FROM information_schema.tables GROUP BY engine;
+--------------------+--------------------+----------+
| engine             | Table_Schema_List  | COUNT(*) |
+--------------------+--------------------+----------+
| Aria               | information_schema |        9 |
| CSV                | mysql              |        2 |
| InnoDB             | mysql              |        2 |
| MEMORY             | information_schema |       51 |
| MyISAM             | mysql              |       28 |
| PERFORMANCE_SCHEMA | performance_schema |       49 |
+--------------------+--------------------+----------+
6 rows in set (0.03 sec)
 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.