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.
|
|
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. |
||||
|
|
|
Try running the following commands at the command prompt (assuming your Server name is SQLEXPRESS):
Once you have completed these steps, try to login with username sa and password changeme. |
||||
|
|
|
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 |
||||
|
|
|
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. |
||
|
|