Memory Notification [message #427683] |
Sat, 24 October 2009 01:20 |
gir_sat
Messages: 64 Registered: October 2008 Location: Mumbai
|
Member |
|
|
Hi,
I am getting this error in my database alert.
Memory Notification: Library Cache Object loaded into SGA
Heap size 2108K exceeds notification threshold (2048K)
Kindly help as early as possible.
Thanks
|
|
|
|
|
Re: Memory Notification [message #427690 is a reply to message #427683] |
Sat, 24 October 2009 01:31 |
balakrishnay
Messages: 54 Registered: September 2009 Location: Pune
|
Member |
|
|
Hi,
Look at the session waits and start looking at which one is causing the issue.
set lines 120
set pages 1000
col event for a30
select sid, event, p1, p2, p3, p1raw from v$session_wait
where event not like '%messag%' and event not in ('pipe get','PL/SQL lock timer','Streams AQ: qmn slave idle wait','Streams A
Q: waiting for time management or cleanup tasks','Streams AQ: qmn coordinator idle wait')
and (wait_time=0 or state='WAITING')
order by 2
/
Regards
Bala
|
|
|
|
|
|
|
Re: Memory Notification [message #427696 is a reply to message #427694] |
Sat, 24 October 2009 02:14 |
|
BlackSwan
Messages: 26766 Registered: January 2009 Location: SoCal
|
Senior Member |
|
|
>Can anyone tell me how to analyze the statspack report for performance tunning problem.
Just because something appears in any TOP N list,
does not means it is broken & needs to be fixed.
In a Top 5 list FIVE will alway be listed whether or not any problem exists.
|
|
|