Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-00600: kglgtbo1 and kcfrbd_3

Rudy MeyerApr 14 2015 — edited Apr 19 2015

Hello,

I am running into two different ORA-00600 errors performing the same basic Insert statement.  The insert is happening through our Java application. The process copies data from one database to another.  There are clob values involved.  We are using prepared statements for the insert.  Both servers are running on Windows.

On my development machine I get:

ORA-00600: internal error code, arguments: [kglgtbo1], [0xB1FB30B0], [], [], [], [], [], [], [], [], [], []

On the production server I get:

ORA-00600: internal error code, arguments: [kcfrbd_3], [5], [158755], [1], [7680], [7680], [], [], [], [], [], []

I have Googled a bunch and been through Oracle support to try to find a resolution.  In support I found information but the patches are for the standard Oracle Database and not XE.  From what I read I think it may be related to the space allocated for the db.  Here is part of the create script we use where we create the tablespace and user:

-- Create Tablespace

CREATE TABLESPACE &database_tablespace

DATAFILE '&database_datafile_path' size 60M

AUTOEXTEND ON

EXTENT MANAGEMENT LOCAL AUTOALLOCATE;

-- Create User

CREATE USER &database_user IDENTIFIED BY &database_password

DEFAULT TABLESPACE &database_tablespace TEMPORARY TABLESPACE &temporary_tablespace;

GRANT RESOURCE, CONNECT, CREATE VIEW TO &database_user;

-- connect as user

connect &database_user/&database_password@&database_alias

-- Create Objects

....

Do you see anything wrong with the above script?

Thank you in advance for any help.

Rudy

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 15 2015
Added on Apr 14 2015
2 comments
1,188 views