Created
March 8, 2021 17:51
-
-
Save mttjohnson/bbfd1f854435a84b33aaf6057c24bd9a to your computer and use it in GitHub Desktop.
Find non-transactional (not innodb) tables in MySQL database
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_NAME, | |
ENGINE | |
FROM INFORMATION_SCHEMA.TABLES | |
WHERE TABLE_SCHEMA='xxxxxx_database_name_here_xxxxxx' | |
and ENGINE != 'InnoDB'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment