I've got an application where all the sprocs are running nice and quick, but the sp_reset_connection calls between them are taking anything up to 20 seconds. I've looked at locking and blocking but can't see any happening and don't understand how this would effect sp_reset_connection. Help!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I've figured out what the issue was. It looks like when you run a trace the data gets written as part of this sproc, this means that if you're tracing into a table and the insert speed isn't stellar everything grinds to a halt. |
|||
|
|
sp_reset_connectionwould be very unusual. – Remus Rusanu Nov 9 '10 at 17:47sys.dm_exec_requestsand see what is thewait_time,wait_typeandwait_resource. Can you look at those fields and see what they show for SPIDs insp_reset_connection? – Remus Rusanu Nov 9 '10 at 18:03