Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

SQL SERVER - how can I rollback "use [MASTER]" query

I accidentally ran query Change authentication mode (T-SQL) in sql server: USE [master] GO EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SoftwareMicrosoftMSSQLServerMSSQLServer', N'LoginMode', REG_DWORD, 1 GO

Now I can't work with SQL SERVER. enter image description here

PLS HELP!!!!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can change it back using below code:

EXEC xp_instance_regwrite 
    N'HKEY_LOCAL_MACHINE', 
    N'SoftwareMicrosoftMSSQLServerMSSQLServer', 
    N'LoginMode', 
    REG_DWORD, 
    2; -- only difference is right here

You have changed authentication mode to windows only. So now you have to log in using windows account then you can change the authentication mode to mixed mode again. Or you can edit your registry to do so. Please check below link:

https://www.top-password.com/knowledge/sql-server-authentication-mode.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...