DBA Hub

📋Steps in this guide1/1

Troubleshoot ORA-07445: exception encountered: core dump

SQL> ALTER SYSTEM SET “_cursor_stats_enabled”=false SCOPE=SPFILE;

oracle configurationintermediate
by OracleDba
13 views
1

Overview

Troubleshoot ORA-07445: exception encountered: core dump During SQL statistics analysis for query execution, we load dependency information into the Library Cache. These dependency memory pieces can be overwritten by other sessions without causing an error. When the original session runs into the wrong dependency information it can lead to the internal error and performance issues during subsequent queries of these Library Cache objects. There are so-many bugs related to 11.2.0.3.0 If you are getting more, raise SR with Oracle Support for recommended patch-set or solution. I have some workaround on this. My database version is 11.2.0.3.0, But have the same error in my prod database. I set the following parameter and bounced the database and current issue resolved. Setting “_cursor_stats_enabled”=false will disable information being maintained under the fixed view V$SQLSTATS. Therefore, OEM, AWR, and ADDM reports will not include information on SQL statistics. To reset “_cursor_stats_enabled” to its default value use: Note: Any hidden parameter value should not be touched without Oracle Support recommendation.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
SQL> ALTER SYSTEM SET “_cursor_stats_enabled”=false SCOPE=SPFILE;

SQL> ALTER SYSTEM RESET “_cursor_stats_enabled”;

SQL> SELECT a.ksppinm Param, b.ksppstvl SessionVal, c.ksppstvl InstanceVal, a.ksppdesc Descr
FROM x$ksppi a, x$ksppcv b, x$ksppsv c
WHERE a.indx = b.indx AND a.indx = c.indx
AND a.ksppinm LIKE ‘/_%’ escape ‘/’
ORDER BY 1;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!