Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: sub heap & ORA-4031
Hello,
time to re-read the booklet of steve Adams, since you are using its APT scripts.
Get your number of chunks in the shared pool this way :
col contents format a30
set linesize 124 head on pause off pagesize 333
select
ksmchcom contents,
count(*) chunks,
sum(decode(ksmchcls, 'recr', ksmchsiz)) recreatable, sum(decode(ksmchcls, 'freeabl', ksmchsiz)) freeable, sum(ksmchsiz) total
This query from metallink will give you the distribution of the buckets :
set linesize 124 head on pause off pagesize 333
col bucket format A20
col KSMCHCLS format a10
select '0 (<140)' BUCKET, KSMCHCLS, KSMCHIDX, 10*trunc(KSMCHSIZ/10) "From",
count(*) "Count" , max(KSMCHSIZ) "Biggest", trunc(avg(KSMCHSIZ)) "AvgSize", trunc(sum(KSMCHSIZ)) "Total" from x$ksmsp where KSMCHSIZ<140 and KSMCHCLS='free' group by KSMCHCLS, KSMCHIDX, 10*trunc(KSMCHSIZ/10)UNION ALL
count(*) , max(KSMCHSIZ) , trunc(avg(KSMCHSIZ)) "AvgSize", trunc(sum(KSMCHSIZ)) "Total" from x$ksmsp where KSMCHSIZ between 140 and 267 and KSMCHCLS='free' group by KSMCHCLS, KSMCHIDX, 20*trunc(KSMCHSIZ/20) UNION ALL select '2 (268-523)' BUCKET, KSMCHCLS, KSMCHIDX, 50*trunc(KSMCHSIZ/50) , count(*) , max(KSMCHSIZ) , trunc(avg(KSMCHSIZ)) "AvgSize", trunc(sum(KSMCHSIZ)) "Total" from x$ksmsp where KSMCHSIZ between 268 and 523 and KSMCHCLS='free' group by KSMCHCLS, KSMCHIDX, 50*trunc(KSMCHSIZ/50)UNION ALL
count(*) , max(KSMCHSIZ) , trunc(avg(KSMCHSIZ)) "AvgSize", trunc(sum(KSMCHSIZ)) "Total" from x$ksmsp where KSMCHSIZ between 524 and 4107 and KSMCHCLS='free' group by KSMCHCLS, KSMCHIDX, 500*trunc(KSMCHSIZ/500)UNION ALL
count(*) , max(KSMCHSIZ) , trunc(avg(KSMCHSIZ)) "AvgSize", trunc(sum(KSMCHSIZ)) "Total" from x$ksmsp where KSMCHSIZ >= 4108 and KSMCHCLS='free'group by KSMCHCLS, KSMCHIDX, 1000*trunc(KSMCHSIZ/1000);
Now if the memory is fragmented before the chunk type 4400 (which correspond to _shared_pool_size_min_alloc), then you have to resort to shared_pool_reserved_size and you will find the state and distribution of the reserved pool with x$ksmspr
set linesize 124 pagesize 33 head on
select
ksmchcom contents,
count(*) chunks,
sum(decode(ksmchcls, 'R-recr', ksmchsiz)) recreatable, sum(decode(ksmchcls, 'R-freea', ksmchsiz)) freeable, sum(ksmchsiz) total
Now you have enough info to reply to your question as of what is left where.
You can try your luck with the reason of who has flushed and get some statement SQL responsible for that. it may help to tract the type of operation that kills your shared pool. Remember this table that is emptied every time you query it?
set linesize 124 pagesize 66 head on
col ksmlrcom format A20 head "Namespace|affected"
col ksmlrsiz format 99999 head "Request|Size"
col ksmlrnum format 99999 head "Num Object|Flushed out"
col ksmlrhon format A27 head "What is loaded"
col ksmlrohv format 9999999999999 head "Hash_value"
col username format a15 head "Username"
col sid format 9999 head "Sid"
spool KSMRLU.txt
select
ksmlrcom, ksmlrsiz, ksmlrnum, ksmlrhon, ksmlrohv, sid,username, a.addr
Note that contrary to a note to mettalink I could never join saddr with the addr. they does not seems to follow the same pattern of raw. But the hash value is correct and help detect the SQL. Interrsting is the number of objects that were flush out.
B. Polarski
http://www.smenu.org
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Jul 06 2006 - 08:56:20 CDT
![]() |
![]() |