N Nando Member Dec 11, 2017 #1 Hey All can someone assist in how to configure an auto disconnect from a database connection if connection is idle for 30 minutes.
Hey All can someone assist in how to configure an auto disconnect from a database connection if connection is idle for 30 minutes.
Marco Kalter Administrator Staff member Dec 12, 2017 #1 You can use an Oracle profile for this purpose. For example: Code: create profile max_idle_profile limit idle_time 30; This profile can then be assigned to database users where this is appropriate: Code: alter user scott profile max_idle_profile;
You can use an Oracle profile for this purpose. For example: Code: create profile max_idle_profile limit idle_time 30; This profile can then be assigned to database users where this is appropriate: Code: alter user scott profile max_idle_profile;