There is one app that opens a lot of sessions to a database and never closed for that app. At some point, there are 100 connections.
1) My question is, what happens when the user(s) closes out the application? Currently, it looks like the sessions remain open even after the user(s) exits the app. I executedSP_WHO2 and the sessions are still there.
2) I am able to execute KILL spid to end the sessions. However, I was wondering if the server's Remote query timeoutsettings will kill it? For now, it looks like it did; but, I just want to confirm that it is theRemote query timeout that killed those sessions.
Thanks