0

How to check mysql storage engine for a database

how to check mysql storage engine for all tables in a database ....?

madridgenim
asked Nov 1, 2017
1 Answer
0

use the below methods...

mysql> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA ='database_name';

or

SHOW TABLE STATUS from 'db_name';
View More
arunkumarak
answered Nov 1, 2017
Your Answer
||||
 
100:0