如何查看oracle当前连接数,会话数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看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\' #并发连接数 参考技术A http://blog.csdn.net/miwucc/article/details/4563918
当前会话数:
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 count(*) from v$session where status='ACTIVE'; #并发连接数
查看连接数参数的设置情况
select value from v$parameter where name = 'processes';本回答被提问者和网友采纳
以上是关于如何查看oracle当前连接数,会话数的主要内容,如果未能解决你的问题,请参考以下文章