Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL 2005 Change Authentication Mode?

Status
Not open for further replies.

CatchTwentyTwo

Technical User
Mar 27, 2006
18
Hello all,

We have SQL 2005 Developer Edition installed on a computer. When we initially installed it, we set it up for Windows Authentication. We now found that we need it to be Mixed Mode Authentication. Is there a way to change it without reinstalling?

Thanks!
 
Code:
USE [master]
GO
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 2
GO
The server should restart.

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
Microsoft MVP VFP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top