MySQL Forums
Forum List  »  MyISAM

Re: 4 GB limitation on dynamic row format tables
Posted by: Ingo Strüwing
Date: June 03, 2005 01:48AM

Try to set "myisam_data_pointer_size" to 8 and then all newly created tables should be unlimited as long as you don't specify MAX_ROWS and your operating system allows for big files.

You can convert existing tables by ALTER TABLE xxx MAX_ROWS = 0;
The option clears a possibly existing value for MAX_ROWS.

See reference manual "13.2.5. CREATE TABLE Syntax". Search for AVG_ROW_LENGTH or MAX_ROWS.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: 4 GB limitation on dynamic row format tables
2527
June 03, 2005 01:48AM


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.