How to Create Windows Group Authentication Login in SQL Server
How to Create Windows Group Authentication Login in SQL Server
sqlserver configurationintermediate
by MSSQL
15 views
How to Create Windows Group Authentication Login in SQL Server

123
The users and group must be exist in Active Directory
By using Windows Authentication, Windows groups can be created at the domain level, and a login can be created on SQL Server for the entire group. Managing access from at the domain level can simplify account administration.
1234
USE [master]
GO
CREATE LOGIN [SQL\SQLSERVER_RO] FROM WINDOWS WITH DEFAULT_DATABASE=[master]
GOPlease to add comments
No comments yet. Be the first to comment!