S
STom
We have the following settings in our web.config file to store session state
on the SQL Server.
<sessionState
mode="SQLServer"
sqlConnectionString="data source=h7sql;Integrated Security=SSPI"
cookieless="false"
timeout="200"
/>
We have found that we have a lot (80+ for 1 user) of connections to the
database left open for multiple days (by looking at our SQL Server monitor).
We had assumed that once the user logged off, the connection would be taken
away and then when a new user logged in, they would get their own
connections.
So I was wondering what connection activity people are seeing on their
servers?
Thanks.
STom
on the SQL Server.
<sessionState
mode="SQLServer"
sqlConnectionString="data source=h7sql;Integrated Security=SSPI"
cookieless="false"
timeout="200"
/>
We have found that we have a lot (80+ for 1 user) of connections to the
database left open for multiple days (by looking at our SQL Server monitor).
We had assumed that once the user logged off, the connection would be taken
away and then when a new user logged in, they would get their own
connections.
So I was wondering what connection activity people are seeing on their
servers?
Thanks.
STom