Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1973866
  • 博文数量: 424
  • 博客积分: 1291
  • 博客等级: 中尉
  • 技术积分: 2682
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-13 01:34
个人简介

linux oracle 网络安全 编程

文章分类

全部博文(424)

文章存档

2016年(22)

2015年(53)

2014年(57)

2013年(242)

2012年(50)

分类: Oracle

2013-05-20 12:48:02

  如何查看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' #并发连接数

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/miwucc/archive/2009/09/17/4563918.aspx
阅读(1240) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~