MSSQL has its own user authentication apart from the operating system or Active Directory user authentication but can I apply database permissions to organisational units or security groups or somehow tie those to MSSQL?
Asked
Active
Viewed 511 times
1
-
You can certainly use Security Groups. – joeqwerty Nov 07 '17 at 23:26
1 Answers
2
- At the SQL Server instance level, create a SQL Server login for the AD group.
- Add a user to the database.
- (Optional, but good practice). Create a database role.
- Link the role to user.
- Add permissions to the role.

Nick Kavadias
- 10,796
- 7
- 37
- 47