MySQL Forums
Forum List  »  Memory Storage Engine

Re: How to allocate more memory for HEAP tables?
Posted by: KimSeong Loh
Date: April 27, 2005 01:32AM

Do a
SHOW TABLE STATUS like 'tablename';

Look at the Data_length and Max_data_length value, these are the currently used space and max space available for the table.

If you want to increase the max_data_length, look at the ALTER TABLE and specify the table options MAX_ROWS and AVG_ROW_LENGTH.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to allocate more memory for HEAP tables?
11943
April 27, 2005 01:32AM


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.