Created
May 22, 2015 14:02
-
-
Save rysstad/5a8db5bf1b9510c1b1e7 to your computer and use it in GitHub Desktop.
Revisions
-
rysstad created this gist
May 22, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ -- MS SQL Server: sp_who2 to temp table CREATE TABLE #temp_sp_who2 ( 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 ) INSERT INTO #temp_sp_who2 EXEC sp_who2 SELECT * FROM #temp_sp_who2 WHERE DBName <> 'master' AND DBName <> 'msdb' ORDER BY DBName ASC DROP TABLE #temp_sp_who2