如何查看oracle当前连接数,会话数
时间:2010-06-18 来源:yuerpb
如何查看oracle当前连接数,会话数 收藏
查看session:
select * from v$session where username is not null
select username,count(username) from v$session where username is not null group by username
当前连接数:
select count(*) from v$process
查看连接数参数的设置情况
select value from v$parameter where name = 'processes'
Select count(*) from v$session where status='ACTIVE' #并发连接数
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/miwucc/archive/2009/09/17/4563918.aspx
Select count(*) from v$session where status='ACTIVE' #并发连接数
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/miwucc/archive/2009/09/17/4563918.aspx
相关阅读 更多 +