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