Hi Bhipra,
To prevent this from happening, consider the following options:
- Move the table to a tablespace with a larger page size.
- Migrate "Regular" tablespaces to "Large" tablespaces using the "ALTER TABLESPACE" command. To increase the size limit for an existing table, you have to reorganize the table indexes (REORG).
- Partition the table using the DPF (Database Partitioning Feature).
Note that this feature is valid for OLAP systems only.
If autostorage and auotoextend then the db will always show the tablepsaces as around 99% full as it only extends them as needed.
You should ensure there is plenty of free space at filesystem level for the storage paths to grow as needed.
Regards,
Hugo