Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

etl107():/home/oracle> ps -ef|grep smon

oracle 16304 1 0 2010 ? 00:10:44 ora_smon_pdwetos2


oracle 15089 15068 0 12:04 pts/1 00:00:00 grep smon
etl107():/home/oracle> ps -ef|grep tns
oracle 20539 1 0 2010 ? 00:16:37 /ora/product/db/10203/bin/tnslsn
r etl107_listener_10203 -inherit
oracle 15188 15068 0 12:04 pts/1 00:00:00 grep tns

600-02-11966930
Question: I'm getting the "ORA-07445: exception encountered: core dump" error m
essage and I cannot understand the meaning of the core dump file. How do you re
solve the ORA-07445 error? The trace file notes:
Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x
0, PC: [0x1024ef000, opidsa()+480]
*** 2007-03-29 16:15:22.349
ksedmp: internal or fatal error
ORA-07445: exception encountered: core dump [opidsa()+480] [SIGSEGV] [Address no
t mapped to object] [0x000000000] [] []
Current SQL statement for this session:
Select /*+ CHOOSE */ object_name ObjectName, object_type ObjectType from user_ob
jects where object_name = :OBJNAME order by 2

Answer: The ORA-07445 is a very generic error, OS dependent, and almost always
requires logging a service request (SR) with Oracle Technical support on MOSC.
In general, an "exception" is an un-trapped error, such as dividing a number by
zero. The docs note:
Error: ORA-07445 exception encountered: core dump
Cause : An operating system exception occurred which should result in the cr
eation of a core file. This is an internal error.
Action : Contact Oracle Customer Support.
Common precipitators of the ORA-07445 include:
* High volume user transactions
* Software bugs (i.e. Bug 4098853). See note 342443.1 on MOSC.

* Too-small RAM regions (shared_pool_size, java pool, large_pool_size), and


a too-small application memory stack (e.g. PL/SQL array too small)
* Too small undo and temp segments
* Program errors (addressing outside of RAM region), e.g. S0C4.
* Improper NLS parameter settings
* Hardware errors
* Oracle block corruption
and a host of other related issues.
Oracle DBA's use alert mechanisms to send an e-mail to the DBA when ORA-07445 er
rors occur, e-mailing the associated core dump file. MOSC now offers an ORA-744
5 search tool, as described in MOSC note Note:208922.1, and you can supply detai
ls from the Oracle trace file to see the exact cause.

You might also like