How to find timed out statements in SQL 2005 profi

2020-07-09 08:46发布

I'm trying to find SQL statements that timed out using the SQL 2005 profiler. Is there a way to set such a filter?

3条回答
爱情/是我丢掉的垃圾
2楼-- · 2020-07-09 08:58

In Profiler, you can add the event "Attention" under "Errors and Warnings". It's definition is

Collects all attention events, such as client interrupt request or when a client connection is broken.

As far as other errors (deadlocks, contraints, etc), try "Execution Warning" (reports warning that occurred during the execution of SQL statement or procedure) or "User Error Message" (the error message displayed to the user in the case of an error or exception).

查看更多
走好不送
3楼-- · 2020-07-09 09:01

Yes.

  • Check "All Events"
  • Go to the lock section
  • Specify the "lock: Timeout" events

Lock event in Books Online

Now, this works with server side locks (@@LOCK_TIMEOUT <> 0). I don't know if a client side timeout will be trapped.

查看更多
Animai°情兽
4楼-- · 2020-07-09 09:08

One option, if you know what your client configured timeouts are set to (ie. 30 seconds by default), you can set a filter on your trace to only collect events with a duration greater than or equal to your timeout (minus a second or two).

查看更多
登录 后发表回答