Search

Friday, June 22, 2012

Enable SQL Server Authentication and Windows Authentication for SQL Server Databases

Follow below procedure to enable both SQL Server Authentication and Windows Authentication in SQL Server 2008 database, and then add a User login and password account for connecting to the database.
  • Open SQL Server Management Studio.
  • In the Object Explorer sidebar, right-click on the top SQL Server node, then click Properties.
  • In the Server Properties pop-up box, click on Security, then in the Server authentication section select "SQL Server and Windows Authentication mode" and click OK.
  • Now in the Object Explorer, open the Security folder node, then right-click on the Logins folder, and select New Login.
  • In the New - Login popup, enter in the Login name you want to create, then select SQL Server authentication.  Type in Password and Confirm Password  (Note: the password should have letters and numbers).  Then uncheck Enforce password expiration and uncheck User must change password at next login.  Then change the Default database drop-down box to the database you want to use.
  • Then on the left-hand side click User Mapping.  In the Users mapped to this login: section check the Map checkbox next to the database you want the user mapped to.  Then in the Database role membership section, check db_owner. ("dbo" should be added to the Default Scheme automatically for the user login once saved).  Click OK to save changes. 
  • The new User/login should be added to the database.  To check to make sure, go the Object Explorer, locate the database and click on the plus sign to open up the node, then open the Security folder node, and open the Users folder, you should see the User you just created is in the list of Users for the database.
  • Now we need to assign the user to the "db_owner" scheme and role membership. Right-click on the User name, then in the Database User popup box you will want to make sure that "db_owner" is checked in both Schemes owned by this user and Database role membership.  The click OK.
Now you can use both SQL Server and Windows Authentication connection string to connect to your database like this:


connectionString="data source=.; Initial Catalog=DemoData; Integrated Security=True;" 
Or use a SQL Server Authentication connection string like this:


connectionString="data source=.;Initial Catalog= DemoData ;User Id=myUsername;Password=myPassword;"

No comments:

Post a Comment