Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change from SQL Server Windows mode to mixed mode (SQL Server 2008)?

Tags:

sql-server

I have installed SQL Server 2008 Express Edition, but by mistake I kept the Windows authentication mode.

Now I want to change that to SQL Server mixed mode. How can I do this?

like image 326
priyanka.sarkar Avatar asked Sep 08 '09 12:09

priyanka.sarkar


People also ask

How do I change SQL Server from Windows Authentication to mixed mode?

In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties. On the Security page, under Server authentication, select the new server authentication mode, and then click OK.

What is SQL Server mixed mode?

Mixed Mode (SQL Authentication Mode) provides a System Administrator (SA) account using a separate user name (e.g. SA) and password that can also be used to connect to the SQL server in addition to the Windows account.


1 Answers

You can do it with SQL Management Studio -

Server Properties - Security - [Server Authentication section] you check Sql Server and Windows authentication mode

Here is the msdn source - http://msdn.microsoft.com/en-us/library/ms188670.aspx

like image 72
Svetlozar Angelov Avatar answered Sep 23 '22 01:09

Svetlozar Angelov