Is there a way I can retrieve sa password in sql server 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:32:34Zhttp://stackoverflow.com/feeds/question/196150http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196150/is-there-a-way-i-can-retrieve-sa-password-in-sql-server-20052Is there a way I can retrieve sa password in sql server 2005jazzrai2008-10-12T21:39:02Z2008-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#19615811Answer by 1800 INFORMATION for Is there a way I can retrieve sa password in sql server 20051800 INFORMATION2008-10-12T21:41:15Z2008-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#1983450Answer by gbn for Is there a way I can retrieve sa password in sql server 2005gbn2008-10-13T17:30:13Z2008-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>