HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlMinor

sys.sysprocesses versus DMVs

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
dmvssysprocessessysversus

Problem

I've seen a couple of blog posts where fairly knowledgeable sounding MVPs are still using sys.sysprocesses rather than the recommended DMVs: sys.dm_exec_connections, sys.dm_exec_sessions and sys.dm_exec_requests.

Given that sysprocesses is deprecated, I'm curious why anyone would continue to use it, particularly MVPs. Is it just that using sysprocesses is less hassle than joining three DMVs or is there a better reason for using it?

The two blog posts I mentioned were:

Adam Machanic: Smashing a DMV Myth

Tim Chapman: Find blocking processes using recursion in SQL Server 2005

Solution

sys.sysprocesses still contains information that is either very cumbersome or impossible to get from the DMVs, since they weren't complete (they are a bit better with each new release, but not 100% yet). Two standout examples:

  • database_id for a non-active request (e.g. there is a row in sys.dm_exec_sessions but not in sys.dm_exec_requests)



  • open transaction count



I suspect this backward compatibility view will remain around until a few versions after they supply the information directly through the DMVs.

Context

StackExchange Database Administrators Q#12598, answer score: 4

Revisions (0)

No revisions yet.