Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: RE: ORA-1658 even though there is enough contig free
Jacques Kilchoer£¬
hi, i am sure it is because of the parallel clause.
If you use parallel, then oracle will allocate two 140M space for that index.
2002-07-30 16:43:00 You wrote:
>Could it be because of the minimum extent size? Though I would think it
>unlikely that your minimum extent size would be greater than 147MB.
>
>> -----Original Message-----
>> From: Jesse, Rich [mailto:Rich.Jesse_at_qtiworld.com]
>>
>> On 8.1.7.2.0 on HP/UX 11.0, I need to create an index online.
>> So, I see how
>> much space I have:
>>
>> select max(bytes/1024/1024)
>> from dba_free_space
>> where tablespace_name = 'MY_IDX_TS';
>>
>> ...and it returns "147.3475". So I create my index:
>>
>> CREATE INDEX myschema.mycoolidx
>> ON myschema.mycooltbl(mycoolcol) PCTFREE 15
>> STORAGE(
>> INITIAL 140 M
>> NEXT 30 M
>> )
>> NOLOGGING ONLINE TABLESPACE my_idx_ts PARALLEL 2;
>>
>> But I keep getting "ORA-01658 unable to create initial extent
>> in MY_IDX_TS",
>> even though there is ample room. I thought it was because I
>> had originally
>> tried it with "PARALLEL 2" and there was some overhead needed, so I
>> coalesced the TS (DICTIONARY, obviously) and tried it without
>> the PARALLEL
>> to no avail. I've even dropped the INITIAL down to 130M
>> without luck (again
>> after coalescing). Oh, to be LOCAL...
>>
>> So, how big can I make the initial extent? I don't remember
>> running into
>> this before and I can't find anything on MetaLink. And of
>> course, I killed
>> the session when it was creating it so now I can't drop the
>> index without a
>> ORA-8104 error.
Good luck!
chaos chaospku_at_163.net
zhu chao
DBA of Eachnet.com
86-021-32174588-667
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: chaos INET: chaospku_at_163.net 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 Wed Jul 31 2002 - 04:28:34 CDT