Tags

11g (5) 12c (6) 18c (3) 19c (4) ASM (1) Critical Patch (11) Data Pump (1) Dataguard (9) Diverse (3) GRID (7) GitLab (2) Linux (8) OEM (2) ORA Errors (13) Oracle (12) RMAN (4)
Showing posts with label ORA-16055: FAL request rejected. Show all posts
Showing posts with label ORA-16055: FAL request rejected. Show all posts

Saturday, March 28, 2020

ORA-16055: FAL request rejected



ORA-16055: FAL request rejected

PURPOSE: All documents are provided on this Blog just for educational purposes only.  Please make sure that you run it in your test environment before to move on to production environment. 

On standby DB:
  
rman target /
show all;
RMAN> CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
RMAN> exit

On Primary:

If you have you already enabled log_archive_dest_state_2 enabled or defer do again as follow.

SQL> ALTER SYSTEM SET log_archive_dest_state_2='DEFER' SCOPE=BOTH;
SQL> alter system switch logfile;
SQL> ALTER SYSTEM SET log_archive_dest_state_2='ENABLE' SCOPE=BOTH;

Or Check following parameter

show parameter log_archive_dest_2;
The SERVICE name must be correct and same as it is defined in your tnsnames.ora file.


 Check the alert Log file. The error should be resolved.

physical standby without duplicate command

physical standby without duplicate command create a physical standby database using RMAN without using duplicate command PURPOSE:   All docu...