oracle查询各个池的使用率,oracle查询连接数、并发数、共享池大小
1、查看當前數據庫建立的會話情況:
select sid,serial#,username,program,machine,status from v$session;
2、查詢數據庫當前進程的連接數:
select count(*) from v$process;
3、查看數據庫當前會話的連接數:
select count(*) from v$session;
4、查看數據庫的并發連接數:
select count(*) from v$session where status='ACTIVE';
5、查詢數據庫允許的最大連接數
select value from v$parameter where name = 'processes';
6、查看當前有哪些用戶正在使用數據:
select osuser,a.username,cpu_time/executions/1000000||'s',sql_fulltext,machine from v$session a,v$sqlarea b where a.sql_address = b.address order by cpu_time/executions desc;
7、查看共享池大小
select * from v$sgastat where name = 'free memory' and pool = 'shared pool';
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的oracle查询各个池的使用率,oracle查询连接数、并发数、共享池大小的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php中退出怎么写,php中退出登录怎么
- 下一篇: php引用shell变量,Linux S