怎样查看oracle当前的连接数
发布网友
发布时间:2022-04-22 02:03
我来回答
共2个回答
热心网友
时间:2022-04-08 00:57
-- 当前的连接数
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;
热心网友
时间:2022-04-08 02:15
查看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' #并发连接数