Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save juan-fdz-hawa/abc1625fc76cfabede038c4c09daab2e to your computer and use it in GitHub Desktop.
Save juan-fdz-hawa/abc1625fc76cfabede038c4c09daab2e to your computer and use it in GitHub Desktop.
SELECT
DB_NAME(dbid) as DBName,
COUNT(dbid) as NumberOfConnections,
loginame as LoginName
FROM
sys.sysprocesses
WHERE
dbid > 0
GROUP BY
dbid, loginame
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment