...
No Format |
---|
mysql> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'YOUR_SCHEMA'; |
To convert the table to InnoDB:
...
...
No Format |
---|
mysql> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'YOUR_SCHEMA'; |
To convert the table to InnoDB:
...