| title | Creating a Login | Microsoft Docs | |
|---|---|---|
| ms.custom | ||
| ms.date | 06/13/2017 | |
| ms.prod | sql-server-2014 | |
| ms.reviewer | ||
| ms.technology | ||
| ms.topic | conceptual | |
| helpviewer_keywords |
|
|
| ms.assetid | a2512310-bdb6-41dc-858a-e866b2b58afc | |
| author | VanMSFT | |
| ms.author | vanto | |
| manager | craigg |
To access the [!INCLUDEssDE], users require a login. The login can represent the user's identity as a Windows account or as a member of a Windows group, or the login can be a [!INCLUDEssNoVersion] login that exists only in [!INCLUDEssNoVersion]. Whenever possible you should use Windows Authentication.
By default, administrators on your computer have full access to [!INCLUDEssNoVersion]. For this lesson, we want to have a less privileged user; therefore, you will create a new local Windows Authentication account on your computer. To do this, you must be an administrator on your computer. Then you will grant that new user access to [!INCLUDEssNoVersion].
-
Click Start, click Run, in the Open box, type
%SystemRoot%\system32\compmgmt.msc /s, and then click OK to open the Computer Management program. -
Under System Tools, expand Local Users and Groups, right-click Users, and then click New User.
-
In the User name box type Mary.
-
In the Password and Confirm password box, type a strong password, and then click Create to create a new local Windows user.
-
In a Query Editor window of [!INCLUDEssManStudioFull], type and execute the following code replacing
computer_namewith the name of your computer.FROM WINDOWSindicates that Windows will authenticate the user. The optionalDEFAULT_DATABASEargument connectsMaryto theTestDatadatabase, unless her connection string indicates another database. This statement introduces the semicolon as an optional termination for a [!INCLUDEtsql] statement.CREATE LOGIN [computer_name\Mary] FROM WINDOWS WITH DEFAULT_DATABASE = [TestData]; GOThis authorizes a user name
Mary, authenticated by your computer, to access this instance of [!INCLUDEssNoVersion]. If there is more than one instance of [!INCLUDEssNoVersion] on the computer, you must create the login on each instance thatMarymust access.[!NOTE]
BecauseMaryis not a domain account, this user name can only be authenticated on this computer.