首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

处置inactive 状态的session

2013-08-16 
处理inactive 状态的session一,Session 状态说明可以通过v$session 视图的status列查看session 的状态。?ST

处理inactive 状态的session

一,Session 状态说明

可以通过v$session 视图的status列查看session 的状态。

?

STATUSVARCHAR2(8)Status of the session:ACTIVE - Session currently executing SQLINACTIVEKILLED - Session marked to be killedCACHED - Session temporarily cached for use by Oracle*XASNIPED - Session inactive, waiting on the client

?

?

二. 处理inactive 状态的session

2.1 在 sqlnet.ora文件中设置expire_time 参数

?

2.2 设置用户profile的idle_time参数

?

要启用idle_time 要先启用RESOURCE_LIMIT参数。 该参数默认是False。

?

show parameter resource;ALTER SYSTEM SET RESOURCE_LIMIT=TRUE SCOPE=BOTH;select * from dba_profiles; select username,profile from dba_users where username='CQCPRODUCT';alter profile default limit idle_time 10;

?

--需要重启下oracle

?

热点排行