oracle查看容許的最大鏈接數和當前鏈接數等信息

 

轉載自:http://blog.csdn.net/haiross/article/details/41944493sql

oracle查看容許的最大鏈接數和當前鏈接數等信息

 

 兩個參數間的關係:sessions=1.1*processes+5數據庫

目前總結的語句,在查看數據的鏈接狀況頗有用,寫完程序一邊測試代碼一邊查看數據庫鏈接的釋放狀況有助於分析優化出一個健壯的系統程序來。markdown

1.當前的數據庫鏈接數

 
 
  1. select count(*) from v$process --當前的數據庫鏈接數​

 

2.數據庫容許的最大鏈接數

 
 
  1. select value from v$parameter where name ='processes'--數據庫容許的最大鏈接數​

 

3.修改最大鏈接數

 
 
  1. alter system set processes = 600 scope = spfile;--修改最大鏈接數,要重啓數據庫纔會生效

 

4.重啓數據庫

 
 
  1. shutdown immediate;
  2. startup;--重啓數據庫​

 

5.查看當前有哪些用戶正在使用數據

 
 
  1. --查看當前有哪些用戶正在使用數據​
  2. SELECT osuser, a.username,cpu_time/executions/1000000||'s',b.sql_text,machine
  3. from v$session a, v$sqlarea b where a.sql_address =b.address order by cpu_time/executions desc;

 

6.當前的session鏈接數

 
 
  1. select count(*) from v$session  --當前的session鏈接數

注意,這個的最大鏈接數是整個oracle數據庫的,不一樣的數據庫用戶佔用的鏈接加起來就是當前的oracle數據庫的session鏈接數。session

 

7.併發鏈接數

 
 
  1. select count(*) from v$session where status='ACTIVE' --併發鏈接數
相關文章
相關標籤/搜索