发布网友 发布时间:2022-04-15 15:12
共2个回答
懂视网 时间:2022-04-15 19:33
bitsCN.com处理inactive状态的session
一,Session 状态说明
可以通过v$session 视图的status列查看session 的状态。
Sql代码 STATUS VARCHAR2(8) Status of the session: ACTIVE - Session currently executing SQL INACTIVE KILLED - Session marked to be killed CACHED - Session temporarily cached for use by Oracle*XA SNIPED - Session inactive, waiting on the client
二. 处理inactive 状态的session
2.1 在 sqlnet.ora文件中设置expire_time 参数
2.2 设置用户profile的idle_time参数
要启用idle_time 要先启用RESOURCE_LIMIT参数。 该参数默认是False。
Sql代码 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
热心网友 时间:2022-04-15 16:41
即使session是inactive,sql_hash_value还是有的,就是最后执行的那个SQL的哈希值,last_call_et也是增加的,只是含义不同而已,这时这个是变为inactive状态后的时间。这没问题的。