How to Set a Default Password in PeopleSoft
How to set the default password for all users or a specific
user in PeopleSoft?
1)
Run the below SQL to set the default password
for all User IDs:
UPDATE PSOPRDEFN SET OPERPSWD = ‘New Password’, ENCRYPTED = ‘0’;
2)
Run the below SQL to set the default password
for a specific User ID or group of user
ids:
UPDATE PSOPRDEFN SET OPERPSWD = ‘New Password’, ENCRYPTED = ‘0’ WHERE OPRID IN (‘User
ID List’);
3)
Run the below Script using data mover to Encrypt
the Password:
Here's an example of how to encrypt a single user password
(FS) already listed in PSOPRDEFN:
ENCRYPT_PASSWORD FS;
To encrypt all user
passwords in PSOPRDEFN, enter:
ENCRYPT_PASSWORD *;
Both Update Password and Encrypt Password script can be run
together using Data Mover.
For All Users:
UPDATE PSOPRDEFN SET OPERPSWD = ‘New Password’, ENCRYPTED = ‘0’;
ENCRYPT_PASSWORD *;
For Single User Id:
UPDATE PSOPRDEFN SET OPERPSWD = ‘New Password’, ENCRYPTED = ‘0’ WHERE OPRID IN (‘User
ID List’);
ENCRYPT_PASSWORD User Id;
Comments
Post a Comment