Skip to content

Instantly share code, notes, and snippets.

@mttjohnson
Created March 8, 2021 17:51
Show Gist options
  • Save mttjohnson/bbfd1f854435a84b33aaf6057c24bd9a to your computer and use it in GitHub Desktop.
Save mttjohnson/bbfd1f854435a84b33aaf6057c24bd9a to your computer and use it in GitHub Desktop.
Find non-transactional (not innodb) tables in MySQL database
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