查询session占用cursor

select o.sid, oSUSEr, machine, count(*) num_curs
 from v$open_cursor o, v$session s
 where user_name = 'RPTPRD' and o.sid=s.sid
 group by o.sid, osuser, machine
 order by  num_curs desc;

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' and s.username is not null;
 
SELECT * FROM V$OPEN_CURSOR WHERE  SQL_TEXT LIKE 'INSERT%';

SELECT MAX (a.VALUE) AS highest_open_cur, p.VALUE AS max_open_cur
    FROM v$sesstat a, v$statname b, v$parameter p
   WHERE     a.statistic# = b.statistic#
         AND b.name = 'opened cursors current'
         AND p.name = 'open_cursors'
GROUP BY p.VALUE;

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/15412087/viewspace-1790867/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/15412087/viewspace-1790867/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值