Mike Barskey
Joined: 10 Jul 2003 Posts: 124 Location: Seattle Technology Group, Inc. (Palm Springs office)
|
Posted: Fri Jul 09, 2004 10:48 am Post subject: Changing users' passwords |
|
|
There are two steps to change a user's password:
- Change the user's password in CP
- Change the login's password in the backend database
You can change a user's password in CP using the Security Wizard in the Setup area.
To change a user's login password on the SQL Server, enter the following command:
| Code: | | sp_password 'old_password', 'new_password', 'login_name' |
Replace "old_password" with the login's current password. Replace "new_password" with the login's new password. Replace "login_name" with the login name that you want to change the password for.
Note that if the old password does not exist (or if you want the new password to not exist), you must enter the word "null" without any quotes. For example:
| Code: | | sp_password null, 'new_password', 'login_name' |
|
|