December 24, 2007 at 2:46 pm
I forgot the password for the SQL Sever. How can I gain access without it?
December 24, 2007 at 3:42 pm
Provided that you haven't disabled the built in administrator account...
Log into the WINDOWS server as the Administrator of the server.
Open Query Analyzer using the Windows NT authentication mode.
Run sp_password to create a new SA Password.
sp_Password @new = 'newpassword', @LoginName = 'SA'
--Jeff Moden
Change is inevitable... Change for the better is not.
December 24, 2007 at 4:48 pm
If that doesn't work, you can try these guys: http://pwcrack.com/sql.shtml
December 24, 2007 at 4:51 pm
Heh... still at it even late on Christmas Eve, huh, Steve?
Merry Christmas, my friend...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2007 at 8:57 am
You may change the account to start SQL Server services, such as use local system account. After accesing the SQL Server, you can reset your password.
December 26, 2007 at 9:44 am
Not sure that will work SQL_ORacle. You still need an account that has rights to connect to SQL Server as an administrator.
The account starting SQL Server has access, or should, which is what you could use to access it. I guess you could start SQL Server under your account and then see if that allows access.
December 26, 2007 at 12:51 pm
Thanks Everyone! Hope you all had a wonderful CHristmas! I will try these things and see where I get.
Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply