如何查看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" #并发连接数
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
- 上一篇: MFC编辑框中按下回车后使光标换行
- 下一篇: 服务器编程之sessionID 和 账户id