1. 程式人生 > >oracle超時踢出連線數設定

oracle超時踢出連線數設定

oracle長連線超時設定
轉載於:
http://www.cnblogs.com/guanghe/p/9084061.html

方法一、在sqlnet.ora中設定引數

如需要設定客戶端空閒10分鐘即被中斷,則在sqlnet.ora的末尾新增SQLNET.EXPIRE_TIME=10注:sqlnet.ora檔案的路徑在 O R A C L

E H O M E / n e t w
o r k / a d m i n
O r a c l e P r o f i l e     S Q L > c o l n a m e f o r m a t a 15     S Q L > c o l v a l u e f o r m a t a 10 r e s o u r c e l i m i t     S Q L > S E L E C T n a m e , v a l u e F R O M g v ORACLE_HOME/network/admin下。 這一條建議不要用是網路踢出 方法二、Oracle Profile中設定 生產庫上執行如下操作:   SQL> col name format a15   SQL> col value format a10 查詢resource limit是否開啟:   SQL> SELECT name, value FROM gv parameter WHERE name = ‘resource_limit’;
  NAME VALUE
  --------------- ----------
  resource_limit FALSE
如果沒有,則開啟這個引數:
  SQL> ALTER SYSTEM SET RESOURCE_LIMIT=TRUE;
  System altered.
  SQL> SELECT name, value FROM gv$parameter WHERE name = ‘resource_limit’;
  NAME VALUE
  --------------- ----------
  resource_limit TRUE
建立空閒10分鐘中止空閒例程的Profile:
  SQL> CREATE PROFILE app_user LIMIT IDLE_TIME 10;
  Profile created.
設定使用者的Profile:
  SQL>alter user mzh profile app_user;
也可以修改已存在的Profile中的IDLE_TIME:
  SQL> ALTER PROFILE DEFAULT LIMIT IDLE_TIME 10;
通過本地連線串(通過監聽)訪問資料庫:
  C:\Windows\SysWOW64>sqlplus “mzh/mzh”@LOCAL_11G_localhost
  SQL*Plus: Release 11.2.0.1.0 Production on 星期一 9月 5 16:41:43 2011
  Copyright © 1982, 2010, Oracle. All rights reserved.
連線到:
  Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
  With the Partitioning, OLAP, Data Mining and Real Application Testing options
  SQL> select * from dual;
等待1分鐘再執行:
  SQL> select * from dual;
  select * from dual

第 1 行出現錯誤:
  ORA-02396: 超出最大空閒時間, 請重新連線