Re: 4 GB limitation on dynamic row format tables
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.
Subject
Views
Written By
Posted
4313
June 02, 2005 08:54AM
Re: 4 GB limitation on dynamic row format tables
2527
June 03, 2005 01:48AM
2512
June 06, 2005 01:22AM
2371
June 06, 2005 03:21AM
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.