Search This Blog

Loading...

Monday, November 28, 2011

Untitled

Password reset scripts:

This is the procedure to reset the password of Oracle Apps user password. It is a PL/SQL Procedure. Password reset scripts is mainly used for resetting all the apps user password, it is mainly used after cloning the development or test instance from production instance.

declare

CURSOR cur_user_dtl IS

SELECT USER_ID, USER_NAME FROM fnd_user WHERE user_id >1000

ORDER BY creation_DATE DESC;

result boolean;

BEGIN

FOR c_user_dtl IN cur_user_dtl LOOP

result := fnd_user_pkg.changepassword(username => c_user_dtl.user_name,

newpassword => 'password123');

IF result THEN

NULL;

ELSE

dbms_output.put_line('The password of ' || c_user_dtl.user_name || ' has failed to reset.');

END IF;

END LOOP;

result := fnd_user_pkg.changepassword(username => 'SYSADMIN',

newpassword => 'welcome1');

end;

/

0 comments:

Post a Comment