Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

Troubleshoot ORA-07445: exception encountered: core dump

Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
  • User AvatarKiran Dalvi
  • 08 Nov, 2021
  • 0 Comments
  • 1 Min Read

Troubleshoot ORA-07445: exception encountered: core dump

TROUBLESHOOT ORA-07445: EXCEPTION ENCOUNTERED: CORE DUMP

Scope : Oracle Database – Enterprise Edition – Version 11.2.0.3.0

Symptoms : Occasional errors found like: ORA-07445: exception encountered: core dump [kglic0()+756] [SIGSEGV] [ADDR:0x430000010B8AE910] [PC:0x107AB7474] [Address not mapped to object] []

Cause :

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.

Solution:

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.

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

Explanation:

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:

1
SQL> ALTER SYSTEM RESET “_cursor_stats_enabled”;

Do only after Oracle recommendation in production env.

Caution : This recommendation can be applied in prod database with Oracle support only. If you are applying it is your own risk.

Note: Any hidden parameter value should not be touched without Oracle Support recommendation.

To See Hidden parameters :

1
2
3
4
5
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;