Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a local administrator on my computer, how can I change the sa password of my local installation of sql server 2008?

Note: I don't know the password for the sa account

share|improve this question
possible duplicate of Recover sa password – nhahtdh Apr 23 at 12:36

1 Answer

One way

USE [master]
GO
ALTER LOGIN [sa] WITH PASSWORD=N'NewPassword'
GO

You can also go to security, right click on ss, select properties and change it in the password field

share|improve this answer
Or for the old-schoolers EXEC sp_password N'old password', N'new password', N'sa'; – Aaron Bertrand May 22 '12 at 13:45
SqlMenace, I tried your way...I get this: Cannot alter the login 'sa', because it does not exist or you do not have permission. (Looking in logins, I can see the sa user.) – user1361315 May 22 '12 at 14:11
Login as the sa and do it like that, btw you inspired me to create this post blogs.lessthandot.com/index.php/DataMgmt/DBAdmin/… :-) – SQLMenace May 22 '12 at 14:18
I don't know the sa's password, how can I login? your joking right? :)( – user1361315 May 22 '12 at 14:22
I wasn't joking, I though you just wanted to change the sa password, what are you login in as? Windows authentication? what permissions do you have? – SQLMenace May 22 '12 at 14:30
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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