Warning: Cannot modify header information - headers already sent by (output started at /home/meritweb/public_html/development/matters/wp-config.php:1) in /home/meritweb/public_html/development/matters/wp-includes/feed-rss2.php on line 8
Development Matters Blog » Password Reset http://development.meritsolutions.com/matters Dynamics Development News that Matters Wed, 27 Apr 2011 13:49:43 +0000 en hourly 1 http://wordpress.org/?v=3.0.1 System Password Reset in Microsoft Dynamics GP http://development.meritsolutions.com/matters/system-password-reset-in-microsoft-dynamics-gp/ http://development.meritsolutions.com/matters/system-password-reset-in-microsoft-dynamics-gp/#comments Fri, 04 Dec 2009 14:09:29 +0000 Petar http://development.meritsolutions.com/matters/?p=61 On a recent project I was on, we needed to access areas of Dynamics GP that were protected with a system password. However, we didn’t know the password on that particular environment, so I needed a way to reset it. I looked up for a solution and found an interesting answer.

I know that the system password is stored in SY02400 table and that this should be my point of interest. The query should be something like ‘UPDATE DYNAMICS..SY02400 SET PASSWORD =’. However, the interesting part is how to set the password to blank. The code segment “0×00202020202020202020202020202020″ represents “Blank” string in binary.

Therefore, in case you forgot your system password, just execute this query:
UPDATE DYNAMICS..SY02400 SET PASSWORD = 0×00202020202020202020202020202020

]]>
http://development.meritsolutions.com/matters/system-password-reset-in-microsoft-dynamics-gp/feed/ 0