Table reached maxextents [message #395120] |
Tue, 31 March 2009 06:52 |
pokhraj_d
Messages: 117 Registered: December 2007
|
Senior Member |
|
|
Hi,
I have one table "AR_TAX_EXTRACT_SUB_ITF" for which I am getting error :-
ORA-1631:max # extents 1000 reached in table APPS.AR_TAX_EXTRACT_SUB_ITF.
upon investigation I found the following from dba_tables:-
==============
TABLE_NAME TABLESPACE_NAME MAX_EXTENTS
------------------------------ ------------------------------ -----------
AR_TAX_EXTRACT_SUB_ITF ARD 2147483645
AR_TAX_EXTRACT_SUB_ITF APPLSYSD 1000
From dba_tablespaces:-
=============================
TABLESPACE_NAME MAX_EXTENTS
------------------------------ -----------
APPLSYSD 1000
ARD 2147483645
Please advice is there is any solution as how to fix the issue.
Pokhraj
|
|
|
|
Re: Table reached maxextents [message #395198 is a reply to message #395120] |
Tue, 31 March 2009 10:43 |
srini_thiru
Messages: 133 Registered: May 2008
|
Senior Member |
|
|
Hi Pokhraj,
Here is the command to alter the max extents for a table.
ALTER TABLE <owner>.table STORAGE ( MAXEXTENTS UNLIMITED);
If the above command throws error you have to check the extent allocation policy,
because
MAXEXTENTS clause not allowed for tablespaces with autoallocate or uniform extent allocation policy
Regards,
Seenu.
|
|
|
|
|
|