How do i know if a mysql table is using myISAM or InnoDB Engine
        Posted  
        
            by 
                kamal
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kamal
        
        
        
        Published on 2010-12-23T02:46:55Z
        Indexed on 
            2010/12/23
            2:54 UTC
        
        
        Read the original article
        Hit count: 278
        
I want to confirm if the statement below is indeed true:
There is no way to specify a storage engine for a certain database, only for single tables, You can, however, specify a storage engine to be used during one session with:
SET storage_engine=InnoDB;
so you don't have to specify it for each table.
How do i confirm, if indeed all the tables are using InnoDB
All the tables were using myISAM.
© Stack Overflow or respective owner