Onbekend |
|
4GB limit, als hij vol is dan krijg je de foutmelding 'The table is full'.
Je kan er omheen door de table te veranderen.
Citaat: the problem is easily fixed. You simply need to run an ALTER TABLE command.
And you'll need to wait. That ALTER TABLE is going to take some time. Really.
To protect yourself in the future, use the MAX_ROWS and AVG_ROW_LENGTH options at CREATE TABLE time if the table is likely to get big.
InnoDB tables to not have this limitation because their storage model is completely different. |