boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Create new Database User for SQL Server Database

Updated on     Kisan Patel

This tutorial will explain how to create a new database user for SQL Server database in SQL Server 2008, SQL Server 2012 or letter version.

To create a new database user, open SQL Server Management Studio then go to the “Security” folder and explore “Logins” sub folder and click “New Login” as shown in below screenshot:

sql_server_security_login

Clicking on the “New Login” option gives us “Login – New” dialog box. Here we have ability to create user based on

  1. Windows Authentication – that is nothing but the user of this machine or network machine.
  2. SQL Server authentication – a independent user that will be allowed to work on this database.

In this case, we will create a new user based on SQL Server authentication, write the Login name and then password.

In case we want to follow the standard policy of creating database password (to ensure that it is strong password that is combination of alphanumeric and special characters), keep the “Enforce password policy” check box checked otherwise un-check it and write any password you want.

Now, in the “Default database” option, choose the database we want to create user for.

sql_server_create_login
To allow this user to have complete access of selected database, go to “User Mapping” option from left panel and select the database for which we are creating user from the top box (check the checkbox against the database to use) and check “db_owner” checkbox from role membership list (check the db_owner checkbox) as shown below.

sql_server_db_owner

By Clicking OK creates a new user under Logins folder as shown below.

sql_server_new_login


SQL Server

Leave a Reply