Is it possible to grant the datareader privileges to a SQL Server Database Role rather than a User?
Asked
Active
Viewed 7,509 times
2 Answers
3
You could add your (user defined) database role to db_datareader as a role member, using the UI.

FvR
- 31
- 1
-
Through the GUI, view the properties of the Database Role 'db_datareader'. On the General tab, under 'Members of this role:', click 'Add...'. This dialog allows selection of either users or other database roles. – Real World IS Mar 04 '15 at 20:04