Work Around for ORA-00600: [kkpo_rcinfo_defstg:objnotfound], [75312]

advertisements

_____________________________________________________________________________________________________________________

The Eucharistic Miracles of the World
This error occurs because of the oracle bug. Most of the time it happens with the database with deferred_segment_creation=true and the error will be specific to a database object. The object id for the particular object will be the second argument in the ORA-00600 error. Object name can be identified from the trace file mentioned in the first ora-00600 error in the alert.log file.


Re execute the command mentioned in the trace file and you can reproduce the error again. Most cases any dml operation with the same table/object will fail with the ora-600 error. Check the number of segments created for the object using the following query.

select count(*) from dba_segments where segment_name ='<object_name>';

Workaround:
  1. Take the table structure / ddl using following command
select dbms_metadata.get_ddl('TABLE','TEST') FROM DUAL
  1. Drop the table or object
  2. Purge the recyclebin
purge recyclebin;
  1. Recreate the object with DDL fetched in the first step.
I wanted to enforce one thing. For ora-00600 errors you have to contact Oracle support for permanent fix as they are the owners for the internals.

_____________________________________________________________________________________________________________________

Website Stats

0 comments:

Post a Comment

Labels

Oracle (629) Script (86) General (77) Unix (47) Blog (23) Technology (19) gadget (6) games (6) Business (3) OCI (3) SQL* Loader (3) Datapump (2)
 

acehints.com Copyright 2011-23 All Rights Reserved | Site Map | Contact | Disclaimer