Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Anybody get a 1630 error when trying to add an index ?
Mike,
Does you index creation script have a storage clause? It should look something like below.
CREATE INDEX FLIGHT_LEGS_NDX1 ON
FLIGHT_LEGS(D_ACTUAL_TIME, EVENT_TYPE)
TABLESPACE ASIFNDX PCTFREE 10
STORAGE(INITIAL 160K NEXT 160K PCTINCREASE 0 MAXEXTENTS 500);
Depending on the projected size of the index, you may need to change the Initial and Next to something like 5M.
Jerry Whittle
ACIFICS DBA
NCI Information Systems Inc.
jerome.whittle_at_scott.af.mil
618-622-4145
> -----Original Message-----
> From: Johnson, Michael [SMTP:Michael.Johnson_at_oln-afmc.af.mil]
>
> I have been trying to add an index
> to a index tablespace and I keep
> getting a 1630 error.
>
> I have 500 extents , but it says the
> max extents are only 121 and they
> are filling up.
>
> Maybe my dendrites have been temporarily
> fried and it is something simple.
>
> Thanks for your time in advance.
>
> Mike
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Whittle Jerome Contr NCI INET: Jerome.Whittle_at_scott.af.mil Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Mon May 13 2002 - 15:18:32 CDT
![]() |
![]() |