Is there a task manager of sorts for SQL Server 2008 and on? A way to see what SQL server is doing, kill runaway queries, etc...
select *
from sys.sysprocesses
Should show you the processes running. Kill tasks is the
KILL <task>
command
Note, this view (master.dbo.sysprocesses
) is as a backward compatible view, so it might not be here in future SQL releases
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With