vote up 3 vote down star

I installed SQL Server 2005 sometime ago and forgot the administrator password I set during setup. How can I connect to SQL server now?

EDIT: I think I only allowed Sql Server Authentication. Login with integrated security also does not work.

flag
Just for clarification, this is not SQL Server 2005 Express you are referring to, correct? – cowgod Oct 26 '08 at 16:36
I think this question belongs to ServerFault.com – Salamander2007 Dec 21 at 7:38

3 Answers

vote up 5 vote down

Try running the following commands at the command prompt (assuming your Server name is SQLEXPRESS):

osql -E -S .\SQLEXPRESS
exec sp_password @new='changeme', @loginame='sa'
go
alter login sa enable
go
exit

Once you have completed these steps, try to login with username sa and password changeme.

link|flag
I think this first command requires integrated account. Since when I try it, it says "Login failed for user 'mydomain\myuser'". – Kev Oct 25 '08 at 21:49
thanks a lot.+(15 chars) – Behrooz Feb 19 at 6:43
vote up 1 vote down

Thanks a lot cowgod

It works Fine. I have Logged in to SQL Server with windows authentication mode. Then opened a new query window. There I typed these two commands by prssing F5.

First run exec sp_password @new='changeme', @loginame='sa'

Then alter login sa enable

link|flag
1  
So you can accept it as an answer. – Mendy Feb 5 at 7:23
vote up 0 vote down

Unless you set it up to only accept SQL Server authentication, you can log on with integrated security using the administrator user of the domain and/or machine.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.