sp_reset_connection 运行时间较长
我有一个应用程序,其中所有存储过程都运行良好且快速,但它们之间的 sp_reset_connection 调用最多需要 20 秒。我研究过锁定和阻塞,但看不到任何发生的情况,也不明白这将如何影响 sp_reset_connection。 帮助!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经弄清楚问题是什么了。
看起来当您运行跟踪时,数据会作为此存储过程的一部分写入,这意味着如果您正在跟踪表并且插入速度不是很好,那么一切都会停止。
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.