?ORACLE會話超時
ORACLE會話超時
自從資料庫遷移後連線資料庫總是提示會話不可用,和客戶溝通才知到他們連線資料庫的程式是從早上連上資料庫後就一直保持連線狀態,一天中需要執行幾次操作,由於資料庫中的會話連線有超時限制,造成客戶端長時間沒有操作,就會斷開連線。
經過這次事件總結了Oracle關於超時退出的一些設定:
1 profile的idle_time限制
2 profile的connect_time限制
3 sqlnet的expire_time限制
4 sqlnet的INBOUND_CONNECT_TIMEOUT_listener_name限制
5 listener的CONNECT_TIMEOUT_listener_name限制
1,profile的idle_time限制
oracle使用者的配置檔案的密碼策略是實時生效的,所見即所得。但是使用者配置檔案的資源限制是由resource_limit引數決定的。
單位是分鐘,預設沒記錯的話應該是10分鐘
要是修改的資源生效,需要設定resource_limit設定為true
alter system set resource_limit=true ;
如果在idle的時間內使用者沒有執行任何操作,會提示ORA-02396:exceeded maximum idle time, please connect again
2,profile的connect_time限制
預設是UNLIMITED,單位是分鐘
使用者在到達設定的時候後,不可以在繼續操作,會提示ORA-02399: exceeded maximum connect time, you are being logged off
如果是設定1分鐘,他會在將近2分鐘的時候提醒你重新登入。
3,sqlnet的expire_time限制:
expire_time主要是在指定的時間去探測客戶端是否可以連通,如果可以的話重新計時,否則就會斷開
在執行rman的時候遇見:ORA-03135: connection lost contact,可以嘗試將此值設定大些。(ID 729811.1)
4,sqlnet的inbound_connect_timieout_listener_name限制
單位是秒,預設值是60
Use the INBOUND_CONNECT_TIMEOUT_listener_name parameter to specify the time, in seconds, for the client to complete its connect request to the listener after the network connection had been established.
If the listener does not receive the client request in the time specified, then it terminates the connection. In addition, the listener logs the IP address of the client and an ORA-12525:TNS: listener has not received client's request in time allowed error message to the listener.log file.
To protect both the listener and the database server, Oracle Corporation recommends setting this parameter in combination with theSQLNET.INBOUND_CONNECT_TIMEOUT parameter in the sqlnet.ora file. When specifying values for these parameters, consider the following recommendations:
- Set both parameters to an initial low value.
- Set the value of the INBOUND_CONNECT_TIMEOUT_listener_name parameter to a lower value than the SQLNET.INBOUND_CONNECT_TIMEOUT parameter.
For example, you can set INBOUND_CONNECT_TIMEOUT_listener_name to 2 seconds and INBOUND_CONNECT_TIMEOUT parameter to 3 seconds. If clients are unable to complete connections within the specified time due to system or network delays that are normal for the particular environment, then increment the time as needed.
如果客戶端在指定的時間內沒有連線上資料庫,會在listener.log日誌中出現 ORA-12525,同時在alert日誌中會報錯ora-03136
5,listener的connect_timeout_listener-name限制,很少使用
CONNECT_TIMEOUT_listener_name=number
This parameter sets the number of seconds that the listener waits to get a valid SQL*Net version 2 connection request after a connection has been started. The listener drops the connection if the timeout is reached. Default is 10; if set to 0, it will wait forever.
This parameter sets the number of seconds that the listener waits to get a valid SQL*Net version 2 connection request after a connection has been started. The listener drops the connection if the timeout is reached. Default is 10; if set to 0, it will wait forever.
引數值單位是秒,預設值是10s,如果建立監聽後在設定的時間內沒有反應將會斷開連線。設定為0表示沒有等待時間限制。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31520497/viewspace-2156828/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle會話超時退出設定Oracle會話
- 修改oracle會話時間表達方式Oracle會話
- 使用Oracle PROFILE控制會話空閒時間Oracle會話
- Oracle 會話(Session)Oracle會話Session
- oracle鎖會話Oracle會話
- (轉) oracle 臨時表(事務級、會話級)Oracle會話
- Oracle跟蹤會話Oracle會話
- oracle 會話,連線Oracle會話
- weblogic10.3中三種配置會話超時的方法Web會話
- 會話級臨時表會話
- oracle的會話如何自殺?Oracle會話
- Oracle阻塞會話查詢Oracle會話
- oracle session(會話) 跟蹤OracleSession會話
- 【會話】Oracle kill session系列會話OracleSession
- oracle遭遇大量SNIPED會話Oracle會話
- 解決超過會話數問題會話
- 在Oracle中,如何定時清理INACTIVE狀態的會話?Oracle會話
- oracle 定期清理inactive會話Oracle會話
- oracle中會話的狀態Oracle會話
- 測試2個oracle session會話同時相同記錄持鎖OracleSession會話
- oracle實用sql(7)--單個會話或會話間statistics對比OracleSQL會話
- oracle 10046當前會話Oracle會話
- Oracle kill會話--sed修改檔案Oracle會話
- oracle會話監控shell指令碼Oracle會話指令碼
- 讓 sudo 會話時間隨心所欲會話
- 自動殺掉堵塞別人超過2小時且自身是不活動的會話會話
- Exchange2010重定向OWA訪問後會話超時解決辦法會話
- Check_oracle_health 之阻塞會話數Oracle會話
- ORACLE快速徹底Kill掉的會話Oracle會話
- Oracle 查詢當前會話標識Oracle會話
- -t【Oracle-故障管理】-Trace跟蹤會話和會話執行慢故障分析Oracle會話
- kill執行時間較長的會話會話
- securecrt同時操作多個會話視窗Securecrt會話
- Oracle 查詢佔用臨時表空間大的歷史會話和SQLOracle會話SQL
- Oracle查詢當前會話的sidOracle會話
- oracle 10046其他使用者會話Oracle會話
- oracle 跟蹤當前使用者會話Oracle會話
- oracle10g會話跟蹤處理Oracle會話