更改Oracle用户的idle_time
如果不设置idle_time,默认是 UNLIMITED,则连接始终不会被断开,这就占用了连接数资源。
合理的设置idle_time,可以让连接发挥最大的效用。IDLE_TIME以分钟为单位,通过配置可以终止inactive 连接。
select username,b.* from dba_users a,dba_profiles b where a.profile = b.profile and username='USERNAME';
可以看到该用户属于‘APP_USER’,IDLE_TIME 值为UNLIMITED。
2. 更改该profile的idle_time.
alter profile app_user limit idle_time 5; commit;原文链接:https://www.f2er.com/oracle/209882.html