How to: Create a SQL Server Login
Most Windows users need a SQL Server login in order to connect to SQL Server. This topic shows how to create a SQL Server login.
-
In SQL Server Management Studio, open Object Explorer and expand the folder of the server instance in which to create the new login.
-
Right-click the Security folder, point to New, and then click Login.
-
On the General page, enter the name of a Windows user in the Login name box.
-
Select Windows Authentication.
-
Click OK.
-
In SQL Server Management Studio, open Object Explorer and expand the folder of the server instance in which to create the new login.
-
Right-click the Security folder, point to New, and then click Login.
-
On the General page, enter a name for the new login in the Login name box.
-
Select SQL Server Authentication. Windows Authentication is the more secure option.
-
Enter a password for the login.
-
Select the password policy options that should be applied to the new login. In general, enforcing password policy is the more secure option.
-
Click OK.
Concepts
PrincipalsOther Resources
CREATE LOGIN (Transact-SQL)sys.database_principals (Transact-SQL)