溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

oracle中怎么設(shè)置session和processes

發(fā)布時(shí)間:2021-07-23 14:49:25 來源:億速云 閱讀:132 作者:Leah 欄目:關(guān)系型數(shù)據(jù)庫

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)oracle中怎么設(shè)置session和processes,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1.sessions

在初始化參數(shù)所設(shè)定的限制中,最為人所知的估計(jì)就是sessions和processes

Sessions 參數(shù)指定了一個(gè) Instance中能夠同時(shí)存在的sessions數(shù)量,或者說,就是能同時(shí)登陸到數(shù)據(jù)庫的并發(fā)用戶數(shù)。通常,我們設(shè)定這個(gè)數(shù)字時(shí)需要考慮我們可能會(huì)有多少個(gè)同時(shí)連接到數(shù)據(jù)庫的并發(fā)用戶,并加上后臺(tái)進(jìn)程的進(jìn)程數(shù),最后乘與1.1.

比如說,估計(jì)系統(tǒng)中可能會(huì)同時(shí)有100個(gè)用戶連接到數(shù)據(jù)庫,那么,你的session最少應(yīng)該為

(100 + 10 ) * 1.1 = 121

當(dāng)數(shù)據(jù)庫連接的并發(fā)用戶已經(jīng)達(dá)到這個(gè)值時(shí),又有新session連進(jìn)來,就會(huì)報(bào)錯(cuò)

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這個(gè)參數(shù)。

Processes參數(shù)指定了Instance在OS層面所能同時(shí)運(yùn)行的進(jìn)程數(shù)?;诤蛃essions設(shè)定同樣的考慮,我們在設(shè)定processes時(shí),也應(yīng)考慮我們可能會(huì)有多少個(gè)同時(shí)連接到數(shù)據(jù)庫的并發(fā)用戶,并加上后臺(tái)進(jìn)程的進(jìn)程數(shù)。

當(dāng)然,在MTS(shared server)的配置下,這個(gè)值的確定會(huì)有所不同。應(yīng)該是普通后臺(tái)進(jìn)程+最大共享服務(wù)器的進(jìn)程數(shù)(max_shared_servers) + 最大Dispatcher進(jìn)程數(shù)(max_dispatchers).

另外,由于在window平臺(tái)中,Oracle是以單一一個(gè)進(jìn)程的形式存在,Processes 參數(shù)變成了限制Oracle進(jìn)程里的線程數(shù)了。

當(dāng)Oracle需要啟動(dòng)新的process而又已經(jīng)達(dá)到processes參數(shù)時(shí),就會(huì)報(bào)錯(cuò):

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)啟動(dò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是個(gè)派生值,由processes的值決定,參考公式為sessions=1.1*process + 5。實(shí)驗(yàn)時(shí)在不同的環(huán)境中有差異。

上述就是小編為大家分享的oracle中怎么設(shè)置session和processes了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI