查看session:
创新互联-专业网站定制、快速模板网站建设、高性价比柞水网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式柞水网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖柞水地区。费用合理售后完善,10年实体公司更值得信赖。
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' #并发连接数
方法1 :用sys等管理用户以dba用户登录 执行select count(1) from v$session;
方法2:在plsql中打开工具--会话 ,可以看到详细的连接
查看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' #并发连接数
这个的话:
查看当前的连接数
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;
12345678910 -- 当前的连接数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;