标签:oracle 参数
1.oracle打开文件句柄数
SQL> select count(*) from v$open_cursor;
COUNT(*)
----------
1565
2.oracle的连接数
SQL> select count(*) from v$session;
COUNT(*)
----------
86
3.当前的进程数
SQL> select count(*) from v$process;
COUNT(*)
----------
89
4.数据库允许的最大进程数
SQL> select value from v$parameter where name=‘processes‘;
VALUE
--------------------------------------------------------------------------------
200
本文出自 “服务器运维” 博客,请务必保留此出处http://shamereedwine.blog.51cto.com/5476890/1790954
标签:oracle 参数
原文地址:http://shamereedwine.blog.51cto.com/5476890/1790954