查询数据库当前进程的连接数:

select count(*) from v$process;

查看数据库当前会话的连接数:

select count(*) from v$session;

查看数据库的并发连接数:

select count(*) from v$session where status='ACTIVE';

查询数据库允许的最大连接数:

select value from v$parameter where name = 'processes';

 

posted on 2020-06-22 17:24  yxtic  阅读(2223)  评论(0编辑  收藏  举报