Created
October 1, 2016 15:35
-
-
Save dungmanh88/042cbb9c2e0f3d05d3da522fdc94570d to your computer and use it in GitHub Desktop.
Check if DB has engine MyISAM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select table_schema, table_name, engine from information_schema.tables where engine != 'InnoDB' and table_schema not in ('mysql', 'performance_schema', 'information_schema'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment