Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagosilr/74261601ab2fd824b4419c45337063c8 to your computer and use it in GitHub Desktop.
Save thiagosilr/74261601ab2fd824b4419c45337063c8 to your computer and use it in GitHub Desktop.
SELECT
DP1.name AS DatabaseRoleName,
isnull (DP2.name, 'No members') AS DatabaseUserName
FROM
sys.database_role_members AS DRM
RIGHT OUTER JOIN sys.database_principals AS DP1
ON DRM.role_principal_id = DP1.principal_id
LEFT OUTER JOIN sys.database_principals AS DP2
ON DRM.member_principal_id = DP2.principal_id
WHERE
DP1.type = 'R'
ORDER BY
DP1.name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment