The sp-reset-connection tag has no wiki summary.
39
votes
3answers
19k views
What “exec sp_reset_connection” shown in Sql Profiler means?
Trying to understand what Sql Profiler means by emitting "sp_reset_connection".
I have the following, "exec sp_reset_connection" line followed by BatchStarting and Completed,
RPC:Completed ...
6
votes
4answers
1k views
Why so many sp_resetconnections for C# connection pooling?
We have a web service coded in C# that makes many calls to MS SQL Server 2005 database. The code uses Using blocks combined with C#'s connection pooling.
During a SQL trace, we saw many, many calls ...
1
vote
2answers
96 views
Is there a java.sql.Connection class's equivalent function for SQL Server sp_resetconnection functionality?
Imagine a simple connection pool for java.sql.Connection. After the connection has been released back to the pool we have no idea if any transactions are open, any temporary tables created, etc.
...
1
vote
2answers
913 views
Can I stop sp_reset_connection being called to improve performance?
My profiler trace shows that exec sp_reset_connection is being called between every sql batch or procedure call. There are reasons for it, but can I prevent it from being called, if I'm confident that ...
0
votes
0answers
54 views
What is the best way to reset a MySQL Connection for use in a connection pool?
If I have a valid connection from a pool of MySQL connections, how should I "reset" it so there are no lingering side effects of the previous use. I know in SQL Server there is a procedure ...