关于Oracle连接数设置
1、查询/修改连接数
–当前连接数
select count(*) from v$session unoin
–并发连接数
select count(*) 并发连接数 from v$session where status=’active’
–查看不同用户的连接数
select username, count(username) from v$session where username is not null group by username
–查询最大连