Hi all,
I am newbie to mysql, i know all standard location where we can get database. I wanted to know which storage engine (myisam, innodb, etc) is used to store data.
Printable View
Hi all,
I am newbie to mysql, i know all standard location where we can get database. I wanted to know which storage engine (myisam, innodb, etc) is used to store data.
use:
table engine will be in column 'Engine' ;)Code:SHOW TABLE STATUS
Isnt there anything which will result database details. I mean when its created, type, storage engine, size etc......
Shows what do you need - tables creation date, engine, last update date and so on. It shows info about all tables in database that is using (command USE)Code:SHOW TABLE STATUS