摘要:
怎样查看oracle当前的连接数呢?只需要用下面的SQL语句查询一下就可以了。 #查看当前不为空的连接 select * from v$sessionwhere username is not null#查看不同用户的连接数 select username,count(username) from v$sessionwhere username is not null group by username#连接数 select count(*) from v$session#并发连接数 Select count(*) from v$sessionwhere status='ACTIVE& 阅读全文
posted @ 2012-11-27 22:21 my_house_station 阅读(885) 评论(0) 推荐(0)
浙公网安备 33010602011771号