Error: Process aborted. Possibly due to JVM is not available or missing java class or empty password.
==> WHILE RUNNING DATAMOVER FOR DATABASE SETUP1- Update the PSOPRDEFN record and set the value from '0' to '1' for all users that have a Blank password then rerun the Encryption in data mover (Encrypted=1 will be bypassed and the process will run successfully).
2- Change the password in PSOPRDEFN to a random password (other than Blank)for all blank passwords. This will also allow the ENCRYPT_PASSWORD Data mover command to run successfully and encrypt all unencrypted values.
SQL> select oprid,operpswd,encrypted from psoprdefn where oprid='PTWEBSERVER';
OPRID OPERPSWD ENCRYPTED
------------------------------ -------------------------------- -----------------------------------------------------------
PTWEBSERVER PTWEBSERVER 0
SQL> commit;
SQL> update psoprdefn set operpswd='PTWEBSERVER', encrypted=1 where oprid='PTWEB
SERVER';
1 row updated.
SQL> commit;
SQL> select oprid,operpswd,encrypted from psoprdefn where oprid='PTWEBSERVER';
OPRID OPERPSWD ENCRYPTED
------------------------------ -------------------------------- -----------------------------------------------------------
PTWEBSERVER PTWEBSERVER 1
Run ENCRYPT.DMS from DATAMOVER.
Thanks this worked for me!
ReplyDelete