Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle 9i insertion problem

Re: Oracle 9i insertion problem

From: Uwe Schneider <uwe_at_richard-schneider.de>
Date: Wed, 13 Mar 2002 21:59:57 +0100
Message-ID: <3C8FBDCD.91E4387D@richard-schneider.de>


Vlad wrote:
>
> Hello,
>
> Here is the problem:
>
> table TEST1 has 1,000,000 rows inserted from a script
> table TEST2 is:
>
> create table TEST2 (
> FILE_ID NUMBER not null,
> ATTRIBUTE_NAME VARCHAR2(255) not null,
> ATTRIBUTE_VALUE VARCHAR2(255),
> constraint pk_test primary key (FILE_ID, ATTRIBUTE_NAME),
> constraint fk_test foreign key (FILE_ID)
> references OTHER_TABLE (FILE_ID)
> )
> organization
> index
> storage
> (
> initial 100M
> next 70M
> )
> pctthreshold 50
> /
>
> which structure is identical to TEST1 (apart from organisation, TEST1
> has conventional one)
>
> When I try to execute:
>
> insert /*+ APPEND PARALLEL(TEST2, 2)*/ into TEST2
> select * from TEST1
>
> After several minutes of thinking Oracle comes up with the error:
>
> ERROR at line 1:
> ORA-00600: internal error code, arguments: [ktfbbsearch-7], [125], [],
> [], [],
> [], [], []
> both tables reside in dictionary managed tablespaces and all the
> inserted data fit initial extent of TEST2.
>
> Could anyone help me out and tell where the problem is?
>

Obviously it is a bug in the software. Contact Oracle support.

U.

-- 
Uwe Schneider       | Telefon +49 7244 / 609504
Haydnstr. 1         | Mail    uwe_at_richard-schneider.de
DE-76356 Weingarten | http://www.richard-schneider.de/uwe
Linux - OS al dente!
Received on Wed Mar 13 2002 - 14:59:57 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US