oracle超時踢出連線數設定
oracle長連線超時設定
轉載於:
http://www.cnblogs.com/guanghe/p/9084061.html
方法一、在sqlnet.ora中設定引數
如需要設定客戶端空閒10分鐘即被中斷,則在sqlnet.ora的末尾新增SQLNET.EXPIRE_TIME=10注:sqlnet.ora檔案的路徑在
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: 超出最大空閒時間, 請重新連線