Skip to content

Instantly share code, notes, and snippets.

View AlexisJackson's full-sized avatar

Alexis Jackson AlexisJackson

  • Gerson Lehrman Group, Inc.
  • Austin, TX
View GitHub Profile

Keybase proof

I hereby claim:

  • I am alexisjackson on github.
  • I am amjackson09 (https://keybase.io/amjackson09) on keybase.
  • I have a public key ASD_PmrczVm5yzvdAifSXkEYGUhLiewQgh333N17jwkvuAo

To claim this, I am signing this object:

@AlexisJackson
AlexisJackson / busy_processes.sql
Created February 9, 2018 19:15
Gets a list of long running processes
/*
select * from sys.sysprocesses
where hostname <> ''
order by hostname asc
*/
-- Table variable to hold InputBuffer data
declare @Inputbuffer table
(
EventType nvarchar(30) NULL,