Has anyone come across the PL/SQL connectionresetting every 3 minutes if unused?
If so, how do you resolve this or troubleshoot this.
Thank you.
Has anyone come across the PL/SQL connectionresetting every 3 minutes if unused?
If so, how do you resolve this or troubleshoot this.
Thank you.
Best answer by Navinth Bakmeedeniya
Check whether you are using a Oracle profile with idle_time set to around 3 minutes.
In bit technical, Oracle PMON process is responsible for handling this periodically.
A session would continue to show as idle even after the idle_time specified in that user's profile.
When the user attempts use the session (may be a new transaction) after the idle_time has expired, Oracle will disconnect the user by terminating the session.
If modifying the db profile parameter is not an option, in PLSQL Developer, you can use the Check Connection functionality which regularly pings the database (in every 60 second intervals as I remember) to get rid of your disconnection issue.
Hope this helps!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.