oracle修改process和session數

來源:互聯網
上載者:User

標籤:style   blog   http   color   strong   io   檔案   資料   

第一步:串連伺服器,輸入sqlplus

第二步:以sysdba身份登陸

第三步:查看和修改processes和sessions參數

1. 查看processes和sessions參數

  select * from v$resource_limit;         //查看process和sessions,更方便

[c-sharp] view plaincopy
  1. SQL> show parameter processes  
  2. NAME                              TYPE         VALUE  
  3. db_writer_processes               integer        1  
  4. gcs_server_processes              integer        0  
  5. job_queue_processes               integer        10  
  6. log_archive_max_processes         integer        2  
  7. processes                         integer        50  
  8.   
  9. SQL> show parameter sessions  
  10. NAME                              TYPE         VALUE  
  11. license_max_sessions              integer        0  
  12. license_sessions_warning          integer        0  
  13. logmnr_max_persistent_sessions    integer        1  
  14. sessions                          integer        60  
  15. shared_server_sessions            integer  

 

2. 修改processes和sessions值

備份:create pfile=‘。。。。’ from spfile 以dba許可權

如果不能開機,恢複startup pfile=‘.....‘

  SQL> alter system set processes=300 scope=spfile;

  系統已更改。

  SQL> alter system set sessions=335 scope=spfile;

  系統已更改。

     create spfile from pfile

3. 修改processes和sessions值必須重啟oracle伺服器才會生效

 

 

第四步:process和session的理解

 

ORACLE的串連數(sessions)與其參數檔案中的進程數(process)有關,它們的關係如下:
      sessions=(1.1*process+5)
   但是我們增加process數時,往往資料庫不能啟動了。這因為我們還漏調了一個unix系統參數:它是/etc/system/ 中semmns,這是unix系統的訊號量參數。每個process會佔用一個訊號量。semmns調整後,需要重新啟動unix作業系統,參數才會生效。

   不過它的大小會受制於硬體的記憶體或ORACLE SGA。範圍可從200——2000不等。
   semmns的計算公式為:

     SEMMNS>processes+instance_processes+system
     processes             :資料庫參數processes的值

     instance_processes:5(smon,pmon,dbwr,lgwr,arch)
     system                 :系統所佔用訊號量。

系統所佔用訊號量可用下列命令查出:

     #ipcs -sb
其中列NSEMS顯示系統已佔用訊號量和其它一些跟串連有關的參數:

      licence_max_sessions, licence_sessions_warning 等預設設定都為零,也就是沒有限制。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.