VA TempDB Workspace Auditor

HEALTHY: < 50% Used
WARNING: 50-80% Used
CRITICAL: > 80% Used
Surgical Action Plan: Restore Server Stability
Allocated Size
0.56 GB
Used Space
95.7 %
Version Store
0.0 MB
Top Consumer
SPID 59 (390.62 MB)

Unified Distribution Logic

Top 5 Space Hogs (Who is responsible?)

SPIDLoginWorkDBUser MBInternalTotal Impact
SPID 59DESKTOP-LQEABPI\pennyAWL390.62 MB0.00 MB390.62 MB
SPID 64DESKTOP-LQEABPI\pennyAWL156.25 MB0.00 MB156.25 MB
SPID 58DESKTOP-LQEABPI\pennyAWL0.00 MB0.00 MB0.00 MB
Reference: Raw Truth Verification Query
SELECT s.session_id, s.login_name, (ts.user_objects_alloc_page_count - ts.user_objects_dealloc_page_count) * 8 / 1024.0 as [UserMB], (ts.internal_objects_alloc_page_count - ts.internal_objects_dealloc_page_count) * 8 / 1024.0 as [InternalMB] FROM tempdb.sys.dm_db_session_space_usage ts JOIN sys.dm_exec_sessions s ON s.session_id = ts.session_id WHERE (ts.user_objects_alloc_page_count + ts.internal_objects_alloc_page_count) > 0 ORDER BY [UserMB] DESC;