How to find Current open Cursors in Oracle

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'; 
 
参考文献:http://stackoverflow.com/questions/1010898/how-to-find-current-open-cursors-in-oracle
 
请使用浏览器的分享功能分享到微信等