Oracle数据库分析sql

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

select count(*) from v$process;

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

select count(*) from v$session;

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

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

查看当前数据库建立的会话情况:

select sid,serial#,username,program,machine,status from v$session;

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

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

 

转载于:https://my.oschina.net/fjr/blog/744465

你可能感兴趣的:(Oracle数据库分析sql)