CPU Archives - DBACLASS https://dbaclass.com/article-tag/cpu/ database administration Thu, 20 Jul 2017 13:22:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 Find sessions consuming lot of CPU https://dbaclass.com/article/find-sessions-consuming-lot-cpu/ https://dbaclass.com/article/find-sessions-consuming-lot-cpu/#respond Thu, 20 Jul 2017 13:22:00 +0000 http://dbaclass.com/?post_type=article&p=3117 Use below query to find the sessions using a lot of CPU. col program form a30 heading "Program" col CPUMins form 99990 heading "CPU in Mins" select rownum as rank, a.* from ( SELECT v.sid, program, v.value / (100 * 60) CPUMins FROM v$statname s , v$sesstat v, v$session sess WHERE s.name = 'CPU used […]

The post Find sessions consuming lot of CPU appeared first on DBACLASS.

]]>
Use below query to find the sessions using a lot of CPU.

col program form a30 heading "Program" 
col CPUMins form 99990 heading "CPU in Mins" 
select rownum as rank, a.* 
from ( 
SELECT v.sid, program, v.value / (100 * 60) CPUMins 
FROM v$statname s , v$sesstat v, v$session sess 
WHERE s.name = 'CPU used by this session' 
and sess.sid = v.sid 
and v.statistic#=s.statistic# 
and v.value>0 
ORDER BY v.value DESC) a 
where rownum < 11;

The post Find sessions consuming lot of CPU appeared first on DBACLASS.

]]>
https://dbaclass.com/article/find-sessions-consuming-lot-cpu/feed/ 0