SYMPTOM
On primary database side, ORA errors in alert log:
Sat Sep 22 03:56:48 2018 Errors in file /u01/app/oracle/diag/rdbms/ractest/RACTEST1/trace/RACTEST1_arc4_20835.trc: ORA-07286: sksagdi: cannot obtain device information. Sat Sep 22 03:56:48 2018 ARC4: FAL archive failed with error 7286. See trace for details Sat Sep 22 03:56:48 2018 Errors in file /u01/app/oracle/diag/rdbms/ractest/RACTEST1/trace/RACTEST1_arc4_20835.trc: ORA-16055: FAL request rejected ARCH: FAL archive failed. Archiver continuing
On standby database side :
ORA-19809: limit exceeded for recovery files ORA-19804: cannot reclaim 536870912 bytes disk space from 214748364800 limit ORA-19815: WARNING: db_recovery_file_dest_size of 214748364800 bytes is 100.00% used, and has 0 remaining bytes available. Sat Sep 22 04:24:24 2018 ************************************************************************ You have following choices to free up space from recovery area: 1. Consider changing RMAN RETENTION POLICY. If you are using Data Guard, then consider changing RMAN ARCHIVELOG DELETION POLICY. 2. Back up files to tertiary device such as tape using RMAN BACKUP RECOVERY AREA command. 3. Add disk space and increase db_recovery_file_dest_size parameter to reflect the new space. 4. Delete unnecessary files using RMAN DELETE command. If an operating system command was used to delete files, then use RMAN CROSSCHECK and DELETE EXPIRED commands. ************************************************************************
CAUSES
Standby database archive log retention policy is not configured properly.
RMAN> show all; ... .. CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; ..
RESOLUTION
Change the archive log retention policy on standby side.
RMAN>CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;