這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)oracle中怎么設(shè)置session和processes,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、禹王臺網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、商城網(wǎng)站定制開發(fā)、集團公司官網(wǎng)建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為禹王臺等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
1.sessions
在初始化參數(shù)所設(shè)定的限制中,最為人所知的估計就是sessions和processes
Sessions 參數(shù)指定了一個 Instance中能夠同時存在的sessions數(shù)量,或者說,就是能同時登陸到數(shù)據(jù)庫的并發(fā)用戶數(shù)。通常,我們設(shè)定這個數(shù)字時需要考慮我們可能會有多少個同時連接到數(shù)據(jù)庫的并發(fā)用戶,并加上后臺進程的進程數(shù),最后乘與1.1.
比如說,估計系統(tǒng)中可能會同時有100個用戶連接到數(shù)據(jù)庫,那么,你的session最少應(yīng)該為
(100 + 10 ) * 1.1 = 121
當數(shù)據(jù)庫連接的并發(fā)用戶已經(jīng)達到這個值時,又有新session連進來,就會報錯
00018, 00000, "maximum number of sessions exceeded"
// *Cause: All session state objects are in use.
// *Action: Increase the value of the SESSIONS initialization parameter.
2. Processes
和Sessions是類似的是processes這個參數(shù)。
Processes參數(shù)指定了Instance在OS層面所能同時運行的進程數(shù)?;诤蛃essions設(shè)定同樣的考慮,我們在設(shè)定processes時,也應(yīng)考慮我們可能會有多少個同時連接到數(shù)據(jù)庫的并發(fā)用戶,并加上后臺進程的進程數(shù)。
當然,在MTS(shared server)的配置下,這個值的確定會有所不同。應(yīng)該是普通后臺進程+最大共享服務(wù)器的進程數(shù)(max_shared_servers) + 最大Dispatcher進程數(shù)(max_dispatchers).
另外,由于在window平臺中,Oracle是以單一一個進程的形式存在,Processes 參數(shù)變成了限制Oracle進程里的線程數(shù)了。
當Oracle需要啟動新的process而又已經(jīng)達到processes參數(shù)時,就會報錯:
00020, 00000, "maximum number of processes (%s) exceeded"
// *Cause: All process state objects are in use.
// *Action: Increase the value of the PROCESSES initialization parameter.
1).通過SQLPlus修改
Oracle的sessions和processes的關(guān)系是
sessions=1.1*processes + 5
使用sys,以sysdba權(quán)限登錄:
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- ---------------------------------------
aq_tm_processes integer 1
db_writer_processes integer 1
job_queue_processes integer 10
log_archive_max_processes integer 1
processes integer 150
SQL> alter system set processes=400 scope = spfile;
系統(tǒng)已更改。
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- -----------------------------------------
aq_tm_processes integer 1
db_writer_processes integer 1
job_queue_processes integer 10
log_archive_max_processes integer 1
processes integer 150
SQL> create pfile from spfile;
文件已創(chuàng)建。
重啟數(shù)據(jù)庫,OK!
SQL> shutdown immediate;
數(shù)據(jù)庫已經(jīng)關(guān)閉。
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關(guān)閉。
SQL> startup
ORACLE 例程已經(jīng)啟動。
Total System Global Area 171966464 bytes
Fixed Size 787988 bytes
Variable Size 145488364 bytes
Database Buffers 25165824 bytes
Redo Buffers 524288 bytes
數(shù)據(jù)庫裝載完畢。
數(shù)據(jù)庫已經(jīng)打開。
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- ----------------
aq_tm_processes integer 0
db_writer_processes integer 1
gcs_server_processes integer 0
job_queue_processes integer 10
log_archive_max_processes integer 2
processes integer 400
SQL> show parameter session;
NAME TYPE VALUE
------------------------------------ ----------- ----------------
java_max_sessionspace_size integer 0
java_soft_sessionspace_limit integer 0
license_max_sessions integer 0
license_sessions_warning integer 0
logmnr_max_persistent_sessions integer 1
session_cached_cursors integer 0
session_max_open_files integer 10
sessions integer 445
shared_server_sessions integer
SQL>
注:sessions是個派生值,由processes的值決定,參考公式為sessions=1.1*process + 5。實驗時在不同的環(huán)境中有差異。
上述就是小編為大家分享的oracle中怎么設(shè)置session和processes了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。