I encountered wired error on my Active Dataguard (ADG) instance after renaming an index on primary
Here is a simple test case to reproduce the issue
On Primary:
SQL>create table T as select * from dba_objects; Table created. SQL>create index T_IDX on T(data_object_id); Index created. SQL>exec DBMS_STATS.GATHER_TABLE_STATS('ORACLE_DBA','T'); PL/SQL procedure successfully completed. SQL>exec DBMS_STATS.GATHER_INDEX_STATS('ORACLE_DBA','T_IDX'); PL/SQL procedure successfully completed. SQL>explain plan for 2 select count(1) from T where data_object_id > 65000; Explained. SQL>@display PLAN_TABLE_OUTPUT ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Plan hash value: 293504097 --------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | --------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 5 | 2 (0)| 00:00:01 | | 1 | SORT AGGREGATE | | 1 | 5 | | | |* 2 | INDEX RANGE SCAN| T_IDX | 29118 | 142K| 2 (0)| 00:00:01 | --------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 2 - access("DATA_OBJECT_ID">65000) 14 rows selected. SQL>select count(1) from T where data_object_id > 65000; COUNT(1) ---------- 28337
On Standby:
SQL>select count(1) from T where data_object_id > 65000; COUNT(1) ---------- 28337
Now rename the index on primary
On Primary:
SQL>alter index T_IDX rename to T_IDX1; Index altered. SQL>
Now run the same query on standby
On Standby:
SQL>select count(1) from T where data_object_id > 65000; select count(1) from T where data_object_id > 65000 * ERROR at line 1: ORA-00600: internal error code, arguments: [kkdlGetCkyName1], [1622537], [], [], [], [], [], [], [], [], [], [] DCYYZ1>
This is happening for following version
SQL>select * from PRODUCT_COMPONENT_VERSION; PRODUCT VERSION STATUS ---------------------------------------- ---------------------------------------- ---------------------------------------- NLSRTL 11.2.0.2.0 Production Oracle Database 11g Enterprise Edition 11.2.0.2.0 64bit Production PL/SQL 11.2.0.2.0 Production TNS for Linux: 11.2.0.2.0 Production
Solution: Oracle is working on Bug 13035388: ORA 600 [KKDLGETCKYNAME1] IN ADG for fixing this issue
Workaround: Rename back the index to original name. Or drop and recreate the index.
Hope this helps !!
Filed under: ORA Errors, Oracle Database 11g Tagged: index rename, kkdlGetCkyName1, ora-00600 Image may be NSFW.
Clik here to view.
Clik here to view.
