How to find Current open Cursors in Oracle

zhanglei_itput發表於2010-12-17
select a.value, s.username, s.sid, s.serial# 
from v$sesstat a, v$statname b, v$session s  where a.statistic# = b.statistic#  and s.sid=a.sid 
and b.name = 'opened cursors current'; 
 
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9252210/viewspace-682012/,如需轉載,請註明出處,否則將追究法律責任。

相關文章