Follow sqlserver-dba.com

Subscribe to RSS feed  Follow @jackvamvas - Twitter

*Use the Comments section for questions

SQLServer-DBA.com Links

Dba_db2_button

dba-ninja.com

SQL Server DBA Jobs

SQL Server - Find sql database users and Find database roles

18 September,2012 by Tom Collins

Script to find  all the database users and their roles

This query returns all the database users and roles attached.

The sys.database_principals returns a role for each principal in the database. The sys.database_role_members returns a row for each member in a role.

As well as giving a good overview of Database Roles  the query is useful for auditing SQL Security Policy. A common policy may be to disallow certain roles – such as db_owner to be used.

 

 

SELECT  members.name, roles.name,roles.type_desc,members.type_desc
FROM sys.database_role_members rolemem
INNER JOIN sys.database_principals roles
    ON rolemem.role_principal_id = roles.principal_id
INNER JOIN sys.database_principals members
    ON rolemem.member_principal_id = members.principal_id
ORDER BY members.name
  

 Related Posts on Security

SQL Server Security Policy

SQL Server – How to manage Failed Logon attempts

SQL Server - Security Risk Analysis and database security


Author: Tom Collins (http://www.sqlserver-dba.com)


Share:

Verify your Comment

Previewing your Comment

This is only a preview. Your comment has not yet been posted.

Working...
Your comment could not be posted. Error type:
Your comment has been posted. Post another comment

The letters and numbers you entered did not match the image. Please try again.

As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.

Having trouble reading this image? View an alternate.

Working...

Post a comment on SQL Server - Find sql database users and Find database roles


sqlserver-dba.com | SQL Server Performance Tuning | SQL Server DBA:Everything | FAQ | Contact|Copyright & Disclaimer