MySQL Forums
Forum List  »  MySQL Workbench

Re: storage engine
Posted by: Sergio Andres De La Cruz Rodriguez
Date: May 10, 2013 01:53PM

Hi Dimitris:

A quick way would be to right click on the table name in the schema tree (to the left in the Workbench Query Editor) and select Send to SQL Editor -> Create Statement. This will show you the create statement for that table, that usually includes the storage engine that it uses.

Another solution would be to query it:

SELECT ENGINE
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'your_db'
AND TABLE_NAME = 'your_table'

Cheers,

Sergio A. de la Cruz Rodríguez
Software Developer
Oracle Corp.

Options: ReplyQuote


Subject
Views
Written By
Posted
1191
May 10, 2013 03:52AM
Re: storage engine
568
May 10, 2013 01:53PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.