How to create Windows Authentication Login in SQL Server
How to create Windows Authentication Login in SQL Server
sqlserver configurationintermediate
by MSSQL
14 views
How to create Windows Authentication Login in SQL Server

1
The user must be exist in Active Directory
1234
USE [master]
GO
CREATE LOGIN [SQL\david] FROM WINDOWS WITH DEFAULT_DATABASE=[master]
GOPlease to add comments
No comments yet. Be the first to comment!