Can I stop sp_reset_connection being called to improve performance?

前端 未结 4 1911
别跟我提以往
别跟我提以往 2021-02-05 16:09

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

4条回答
  •  隐瞒了意图╮
    2021-02-05 17:03

    Just keep the connection open instead of returning it to the pool, and execute all commands on that one connection.

提交回复
热议问题