我们假设是数据库管理员,为了数据库的安全,我们需要知道当前有多少连接数,最大支持多少连接数,可以用以下语句查询
select username,count(username),machine,status from v$session
where username is not null group by username,machine,status -------查询当前连接数
show parameters processions -------------最大连接数