首页  >  文章  >  数据库  >  如何查看oracle打开的游标

如何查看oracle打开的游标

WBOY
WBOY原创
2016-06-07 15:20:532804浏览

oracle查看当前打开的游标数目和连接数: select count(*) from v$open_cursor; select count(*) from v$session; 查看当前打开的游标数 select * from v$sysstat where name = 'opened_cursors_current' 查看哪些会话打开了游标 select sid,count(*) from v

oracle查看当前打开的游标数目和连接数:

 

select count(*) from v$open_cursor;



select   count(*)   from   v$session;


查看当前打开的游标数

select * from v$sysstat where name = 'opened_cursors_current'


查看哪些会话打开了游标

select sid,count(*) from v$open_cursor group by sid having count(*)>1000;

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn