V$SGASTAT
Date: Tue, 11 Mar 2014 13:45:38 +0000
Message-ID: <c98b83f686454b5088e08129111d34ac_at_USMAIL2K1303.us.micros.int>
Hi all,
We recently had an issue with an undersized shared pool. We've increase the size of the shared pool and think this should be resolved. Our customer, however, is freaking out and wants to monitor this.
I've been looking at v$sgastat hoping this would provide the information, but I don't quite understand how the view works. Testing against 11.2.0.3.7 on OEL6x64.
Shared_pool_size is set at 256MB for each instance in this RAC. Yet when I try to sum up either the free memory value or the non-free values, I get results far larger than that:
SQL> select
2 type 3 , round( sum( bytes /1024 /1024 ) ) MB 4 from 5 ( 6 select 7 case when name = 'free memory' then 'FREE' else 'USED' end type 8 , bytes 9 from 10 v$sgastat 11 where 12 pool = 'shared pool' 13 ) 14 group by 15 type
16 /
TYPE MB
---- ----------
USED 3760 FREE 1744
Am I completely misunderstanding how this is supposed to work? Is there some way to monitor shared pool usage?
Stephan Uzzell
--
http://www.freelists.org/webpage/oracle-l
Received on Tue Mar 11 2014 - 14:45:38 CET