Is there a way I can retrieve sa password in sql server 2005 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:32:34Z http://stackoverflow.com/feeds/question/196150 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/196150/is-there-a-way-i-can-retrieve-sa-password-in-sql-server-2005 2 Is there a way I can retrieve sa password in sql server 2005 jazzrai 2008-10-12T21:39:02Z 2008-10-13T17:30:13Z <p>I just forgot the password. Can anyone help me how to get back the password.</p> http://stackoverflow.com/questions/196150/is-there-a-way-i-can-retrieve-sa-password-in-sql-server-2005/196158#196158 11 Answer by 1800 INFORMATION for Is there a way I can retrieve sa password in sql server 2005 1800 INFORMATION 2008-10-12T21:41:15Z 2008-10-12T21:41:15Z <p>There is no way to get the old password back. Log into the SQL server management console as a machine or domain admin using integrated authentication, you can then change any password (including sa).</p> http://stackoverflow.com/questions/196150/is-there-a-way-i-can-retrieve-sa-password-in-sql-server-2005/198345#198345 0 Answer by gbn for Is there a way I can retrieve sa password in sql server 2005 gbn 2008-10-13T17:30:13Z 2008-10-13T17:30:13Z <p>You can get the password back with luck...</p> <ul> <li>If you have a backup of the master DB</li> <li>If you have something like NGS Squirrel</li> <li>If the password is perhaps 10 characters max</li> </ul> <p>Then:</p> <ul> <li>Restore it on a different instance</li> <li>Read the hashed value from sysxlogins (forget SQL 2005 replacement)</li> <li>CREATE LOGIn blah and use hashed pasword</li> <li>Use Squirrel to brute force the hash</li> </ul> <p>Or reset as above...</p>