Created
November 20, 2012 22:17
-
-
Save gwenshap/4121628 to your computer and use it in GitHub Desktop.
track PGA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select * from ( | |
| select grouping_id(module) g,dt, schemaname,machine,decode(grouping_id(module),1,'{------}',module) module, round(sum(pga_used_mem)/1024/1024) as mb_used, round(sum(pga_alloc_mem)/1024/1024) as mb_alloc, | |
| count(*) CNT,count(case when logon_time > dt - interval '30' minute then 1 end) cnt_30min, | |
| round(ratio_to_report(sum(pga_alloc_mem)) over(partition by dt,grouping_id(machine,module))*100) "%mem", | |
| round(ratio_to_report(count(*)) over(partition by dt,grouping_id(machine,module))*100) "%cnt", round(sum(diff_alloc)/1024/1024) MB_grow, | |
| count(*)-lag(count(*)) over (partition by schemaname,machine,module order by dt) ses_added | |
| from ( | |
| select pga_alloc_mem-lag(pga_alloc_mem) over (partition by spid,sid,serial# order by dt) diff_alloc, | |
| t.* from track_pga t | |
| ) | |
| group by dt, schemaname,machine, rollup(module) | |
| order by dt desc, g desc, mb_alloc desc | |
| ) where "%mem" >=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment