Activity Monitor Problems in SQL Server 2005

前端 未结 2 708
自闭症患者
自闭症患者 2021-01-26 22:00

I am looking at the Activty Monitor for SQL Server 2005 and we have some processes that are taking up large amounts of the CPU. When I look at what is trying to be run I get:

2条回答
  •  伪装坚强ぢ
    2021-01-26 22:09

    Look at sys.dm_exec_sessions and sys.dm_exec_connections for the session ids that take up CPU. You'll find the application name, host name and process id of the client.

提交回复
热议问题