tags:

views:

21

answers:

1

i have an in-memory table specified using engine=MEMORY. what command can i run to find out how much space it is currently taking? what about the maximum size?

+1  A: 
SHOW TABLE STATUS LIKE 'tablename'\G

Where tablename is the name of the table you want to check.

Bill Karwin