| Memory Notification [message #427683] |
Sat, 24 October 2009 01:20  |
gir_sat Messages: 28 Registered: October 2008 Location: Mumbai |
Junior 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: 53 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 #427693 is a reply to message #427688] |
Sat, 24 October 2009 01:50   |
Michel Cadot Messages: 29418 Registered: March 2007 Location: Nanterre, France, http://... |
Senior Member |
|
|
gir_sat wrote on Sat, 24 October 2009 08:27But,
now db performance is very poor.
Even even i amseeing sar report(os is linux),
it is giving 25% idle and %user as 25 and %system as 25.
thanks again
No relation with the message.
First check your application, then your IO subsystem (once you have optimized your application not before).
Regards
Michel
|
|
|
|
| Re: Memory Notification [message #427696 is a reply to message #427694] |
Sat, 24 October 2009 02:14  |
 |
BlackSwan Messages: 3353 Registered: January 2009 |
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.
|
|
|