Possible Duplicate:
Activity Monitor Problems in SQL Server 2005
I have some processes running on my database server that are taking up enourmous amount of CPU. When I view the detail about the process I get:
set transaction isolation level read committed
The other details include:
- Status: Sleeping
- Open Transactions: 0
- Command: AWAITING COMMAND
- Login Time: 12+ Hours ago
- Last Batch: Less than 2 minutes ago
I haven't been watching the activity monitor lately but when I got word from my server admins that the CPU was running near 100% with SQL Server taking the majority I got very curious. That command is coming from different (web) applications but none of them ever actually use that code. Some are written in Coldfusion and others are in .NET.
Is this command generated by SQL Server?
What is causing it?
Is it safe to kill those processes?