Errors while replicating database
Background: For MultiDataCenter setup, I have to replicate primary database to secondary database. For that I followed Approach
1) Create Logical Backup via following command on primary database
./expdp \"sys/Oracle123 as sysdba\" DIRECTORY=DATA_PUMP_DIR FULL=y DUMPFILE=${BKP_NAME}.dmp PARALLEL=2 LOGFILE=${BKP_NAME}.log
2) copy this dump file to secondary database
3) Import all schemas (that is, Oracle Identity Manager and Onboarding Services Scehmas) in secondary database:
./impdp \"sys/<Password> as sysdba\" DIRECTORY=DATA_PUMP_DIR DUMPFILE=${BKP_NAME}.dmp PARALLEL=2 LOGFILE=impdp1_${BKP_NAME}.log SCHEMAS=<SCHEMAS NAME> TABLE_EXISTS_ACTION=REPLACE EXCLUDE=STATISTICS
Here I got some errors that I am not getting how to resolve. Please find attachment for the list of errors. can anyone help me know how to remove these errors.