轉載自:http://blog.csdn.net/haiross/article/details/41944493sql
oracle查看容許的最大鏈接數和當前鏈接數等信息
兩個參數間的關係:sessions=1.1*processes+5數據庫
目前總結的語句,在查看數據的鏈接狀況頗有用,寫完程序一邊測試代碼一邊查看數據庫鏈接的釋放狀況有助於分析優化出一個健壯的系統程序來。markdown
1.當前的數據庫鏈接數
- select count(*) from v$process --當前的數據庫鏈接數
2.數據庫容許的最大鏈接數
- select value from v$parameter where name ='processes'--數據庫容許的最大鏈接數
3.修改最大鏈接數
- alter system set processes = 600 scope = spfile;--修改最大鏈接數,要重啓數據庫纔會生效
4.重啓數據庫
- shutdown immediate;
- startup;--重啓數據庫
5.查看當前有哪些用戶正在使用數據
- --查看當前有哪些用戶正在使用數據
- SELECT osuser, a.username,cpu_time/executions/1000000||'s',b.sql_text,machine
- from v$session a, v$sqlarea b where a.sql_address =b.address order by cpu_time/executions desc;
6.當前的session鏈接數
- select count(*) from v$session --當前的session鏈接數
注意,這個的最大鏈接數是整個oracle數據庫的,不一樣的數據庫用戶佔用的鏈接加起來就是當前的oracle數據庫的session鏈接數。session
7.併發鏈接數
- select count(*) from v$session where status='ACTIVE' --併發鏈接數