Created
August 20, 2019 00:16
-
-
Save naranjja/b5f5ef0623f59f1f195bdb3d77f219cf to your computer and use it in GitHub Desktop.
List all users and permissions in Azure SQL
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 characters
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