Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I reset username and password for SQL Server 2008

Shortly after I installed MS SQL Server 2008 on my machine, I forgot the password AND username that I chose. How can I reset them?

This question seems promising, but it didn't work for me.

When I tried exec sp_password @new='changeme', @loginame='sa' as a query, I received:

Msg 15151, Level 16, State 1, Line 1
Cannot alter the login 'sa', because it does not exist or you do not have permission.
like image 898
Eric Wilson Avatar asked Jul 06 '09 13:07

Eric Wilson


2 Answers

Try following the instructions from this blog post entitled Disaster Recovery: What to do when the SA account password is lost in SQL Server 2005. It applies to SQL Server 2005, but should probably work with SQL Server 2008 as well.

You need to start SQL Server in single user mode using the -m command line switch. When SQL Server has started, a Windows administrator can connect to SQL Server using Windows authentication. You can then reset the password of the sa user. Make sure to restart SQL Server without the -m command line parameter afterwards.

like image 66
adrianbanks Avatar answered Nov 03 '22 01:11

adrianbanks


Login as a Local or Domain Admins and just try to connect using "Windows Authentication".

like image 20
RBarryYoung Avatar answered Nov 03 '22 01:11

RBarryYoung