Skip to content

Instantly share code, notes, and snippets.

@PhilMurwin
Last active September 7, 2018 20:09
Show Gist options
  • Save PhilMurwin/34db243a18831054555922bcc08bf28f to your computer and use it in GitHub Desktop.
Save PhilMurwin/34db243a18831054555922bcc08bf28f to your computer and use it in GitHub Desktop.
SQL Server sp_who2
Declare @sp_who2 Table
(
SPID INT
,Status VARCHAR(255)
,Login VARCHAR(255)
,HostName VARCHAR(255)
,BlkBy VARCHAR(255)
,DBName VARCHAR(255)
,Command VARCHAR(255)
,CPUTime INT
,DiskIO INT
,LastBatch VARCHAR(255)
,ProgramName VARCHAR(255)
,SPID2 INT
,REQUESTID INT
)
-- Get Who Data
INSERT INTO @sp_who2
EXEC sp_who2
SELECT *
FROM @sp_who2
WHERE DBName <> 'master'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment