While working with a database 12.1.0.2 I was trying to gather statistics in fixed objects however I was receiving the error ORA-600[ktliReadStreamAdvanceBuf_2] :
The note basically says that this is caused by the UNIFIED_AUDIT_TRAIL and there are two solutions:
- Upgrade to Oracle RDBMS 20.1.
- Apply Patch 27873364 if available for your version and platform.
However in the database UNIFIED AUDIT TRAIL is not used:
SQL> select parameter,value from v$option where parameter = 'Unified Auditing'PARAMETER VALUE-------------------- --------------------Unified Auditing FALSESQL>
SQL> SELECT COUNT(*) FROM V_$UNIFIED_AUDIT_TRAIL;SELECT COUNT(*) FROM V_$UNIFIED_AUDIT_TRAIL*ERROR at line 1:ORA-00600: internal error code, arguments: [ktliReadStreamAdvanceBuf_2], [29],[29], [117], [239], [1], [32], [32], [0], [], [], []
SQL> select count(*) from x$unified_audit_trail;select count(*) from x$unified_audit_trail*ERROR at line 1:ORA-00600: internal error code, arguments: [ktliReadStreamAdvanceBuf_2], [29],[29], [117], [239], [1], [32], [32], [0], [], [], []SQL>
SQL> exec dbms_stats.lock_table_stats('SYS', 'x$unified_audit_trail');PL/SQL procedure successfully completed.SQL>
SQL> exec DBMS_STATS.GATHER_FIXED_OBJECTS_STATS ;PL/SQL procedure successfully completed.SQL>
No hay comentarios:
Publicar un comentario