Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My MySQL database contains several tables using different storage engines (specifically myisam and innodb). How can I find out which tables are using which engine?

share|improve this question

6 Answers

up vote 107 down vote accepted

SHOW TABLE STATUS WHERE Name = 'xxx'

This will give you (among other things) an Engine column, which is what you want.

share|improve this answer
SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'dbname'

Replace "dbname" with your database name.

share|improve this answer
I dont know what it is but im old fashioned Query Guys – Angel.King.47 Nov 26 '10 at 19:50
1  
This is great b/c it filters out everything but tablename and engine. – Tone Mar 23 '11 at 13:05
show create table <tablename>;

less parseable but more readable that show table status.

share|improve this answer
1  
This is very helpful thanks. – V... I... Aug 23 '11 at 17:11

or just

show table status;

just that this will llist all tables on your database.

share|improve this answer

Bit of a tweak to Jocker's response (I would post as a comment, but I don't have enough karma yet):

SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'database' AND ENGINE IS NOT NULL;

This excludes MySQL views from the list, which don't have an engine.

share|improve this answer
SHOW CREATE TABLE <tablename>\G

will format it much nicer compared to the output of

SHOW CREATE TABLE <tablename>;

The \G trick is also useful to remember for many other queries/commands.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.