Thursday 25 February 2021

How to find which session is using more UNDO in oracle database

Use below query to find the session which is taking more UNDO.


select s.sid, t.name, s.value
from v$sesstat s, v$statname t
where s.statistic#=t.statistic#
and t.name='undo change vector size'
order by s.value desc;




Thanks for going through the post...........

No comments:

Post a Comment