How to Create SQL Server Authenticated Login in SQL Server - SQL Server DBA Tutorial

In this video you will learn step by step how to create SQL server Login using SQL Server Authentication. It shows step by step process using SQL Server management studio as well as creating SQL Server Authentication login using T-SQL Script. It talks about different options such as password Policy management of SQL Server and default database best practices.

Script used in this video to Create SQL Server Login
 USE [master]
GO
 
CREATE LOGIN [Techbrothers]  
WITH PASSWORD=N'Pa$$w0rd', 
 DEFAULT_DATABASE=[master],  
CHECK_EXPIRATION=OFF,  
CHECK_POLICY=OFF
 GO


SQL Server DBA Tutorial - Create SQL Server Authenticated Login in SQL Server 









No comments:

Post a Comment