declare v_user_name varchar2(100) := 'SYSADMIN'; v_unencrypted_password varchar2(100) := 'oracle123'; begin apps.nd_user_pkg.updateuser ( x_user_name => v_user_name , x_owner => null , x_unencrypted_password => v_unencrypted_password , x_password_date => sysdate ); commit; end; /
Take note that you would need enough database privilege to the APPS schema to run this script.
No comments:
Post a Comment