以下的文章会教会你如何查看Oracle当前连接数,以及怎样来查看关于Oracle数据库的当前的相关连接数呢?我们只需要用到下面的相关的SQL语句来进行查询一下即可,以下就是文章的具体内容的介绍。
- 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$session
连接数
- Select count(*) from v$session where status='ACTIVE'
并发连接数
- show parameter processes
***连接
- alter system set processes = value scope = spfile;
重启数据库 修改连接
- /home/Oracle9i/app/Oracle9i/dbs/init.ora
- /home/Oracle9i/app/Oracle9i/dbs/spfilexxx.ora open_cursor
上述的相关内容就是对查看Oracle当前连接数的描述,希望会给你带来一些帮助在此方面。
【编辑推荐】