请教 如何查看cursor打开的最大数
请教 如何查看cursor打开的最大数 问题点数:0、回复次数:3Top
1 楼maohaisheng(虫族:无名小虫)回复于 2003-04-03 10:07:36 得分 0
在初始化文件中的参数open_cursors中定义
open_cursors = 300
SQL> show parameters open_cursors;
NAME TYPE VALUE
------------------------------------ ------- ------------------------------
open_cursors integer 300Top
2 楼black_snail(●男人要忍○)回复于 2003-04-03 10:09:35 得分 0
check
sys.v_$open_cursor
to get the current number of open cursors
Top
3 楼zzyok()回复于 2003-04-03 10:14:24 得分 0
select count(*)from sys.v_$open_cursorTop




