查看oracle连接数和会话情况
Posted 一枚IT散人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看oracle连接数和会话情况相关的知识,希望对你有一定的参考价值。
select b.MACHINE, b.PROGRAM , count(*) from v$process a, v$session b where a.ADDR = b.PADDR and b.USERNAME is not null group by b.MACHINE , b.PROGRAM order by count(*) desc
或者
查看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
以上是关于查看oracle连接数和会话情况的主要内容,如果未能解决你的问题,请参考以下文章