怎样查看oracle当前的连接数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样查看oracle当前的连接数相关的知识,希望对你有一定的参考价值。
-- 当前的连接数SQL> select count(*) from v$session
-- #并发连接数
SQL> Select count(*) from v$session where status='ACTIVE'
--数据库允许的最大连接数
SQL> select value from v$parameter where name = 'processes'
-- #最大连接
SQL> show parameter processes
-- #查看不同用户的连接数
SQL> select username,count(username) from v$session where username is not null group by username; 参考技术A 查看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' #并发连接数
以上是关于怎样查看oracle当前的连接数的主要内容,如果未能解决你的问题,请参考以下文章