码迷,mamicode.com
首页 > 数据库 > 详细

查看oracle连接数和会话情况

时间:2017-04-01 09:22:28      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:word   process   tran   esc   ora   ssi   not   machine   sof   

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连接数和会话情况

标签:word   process   tran   esc   ora   ssi   not   machine   sof   

原文地址:http://www.cnblogs.com/huangdewei/p/6654485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!