RMAN-05655: specified REMOTE_RECOVERY_FILE_DEST parameter is NULL
RMAN> DUPLICATE PLUGGABLE DATABASE pdb1 AS pdb1_in_cdb19
FROM ACTIVE DATABASE
DB_FILE_NAME_CONVERT ('ORCL', 'CDB19');2> 3>
Starting Duplicate PDB at 27-JAN-22
using target database control file instead of recovery catalog
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=403 device type=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate PDB command at 01/27/2022 15:47:52
RMAN-05501: aborting duplication of target database
RMAN-05655: specified REMOTE_RECOVERY_FILE_DEST parameter is NULL
REMOTE_RECOVERY_FILE_DEST specifies a directory from which to read archive log files during a pluggable database (PDB) refresh operation if the source is not available.
Solution: In the auxiliary, I set REMOTE_RECOVERY_FILE_DEST from null to
SQL> show parameter REMOTE_RECOVERY_FILE_DEST
NAME TYPE
------------------------------------ -----------
VALUE
------------------------------
remote_recovery_file_dest string
SQL> alter system set remote_recovery_file_dest='/u01/remotedest' scope=both;
System altered.
Comments