摘要: 1、查看系统配置游标数 select value from v$parameter where name = 'open_cursors'; 2、查看游标使用情况 select o.sid, osuser, machine, count(*) num_curs from v$open_cursor o, v$session s where user_name = 'XFTEST' and o.... 阅读全文
posted @ 2016-05-26 09:33 伍叶春 阅读(1484) 评论(0) 推荐(0) 编辑