Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 How to change the Authentication?

Author  Topic 

somu_p
Starting Member

13 Posts

Posted - 2007-04-03 : 08:50:36
Hi,
I'm newly installed SQL Server 2005. My Authentication is windows Authentication.
How to change the windows Authentication to SQL Server Authentication?

Kindly help me in this regard.

Regards
Somu

spejbl
Starting Member

28 Posts

Posted - 2007-04-03 : 09:06:32
[code]EXEC master.dbo.xp_instance_regwrite
'HKEY_LOCAL_MACHINE',
'SOFTWARE\Microsoft\MSSQLServer\MSSQLServer',
'LoginMode',
'REG_DWORD',
2[/code]+ restart SQL Server service

--
kb
http://kbupdate.info/ | http://suppline.com/
Go to Top of Page
   

- Advertisement -