Avatar of Keyurkumar
Keyurkumar
 asked on

Data Gaurd Gap Reolving

I have data Physical Gaurd setup. I found there is gap in tandby DB. I found Missing archive log sequence#. I checked on my primary DB and found that that Archivelog was backed up to disk using RMAN backup and then deleted.

I dont know how to retrive that Archive log from RMAN and put it on disk, move it to standby machine, register and apply it.

If I can able to retrive that backup from RMAN I would be able to resolve a GAP.

Please let me know what command should I execute to get an archive log file from RMAN backup set.

Thanks

~Keyur
Oracle Database

Avatar of undefined
Last Comment
EE_AutoDeleter

8/22/2022 - Mon
Keyurkumar

ASKER
I have resolved a gap using following commands

On Primary:

Rman target /
run
{
 RESTORE ARCHIVELOG FROM SEQUENCE 443 until SEQUENCE 446;
}

Fetch Archive Log (FAL) process will automatically resolve the Gap.

 
.
ASKER CERTIFIED SOLUTION
EE_AutoDeleter

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Your help has saved me hundreds of hours of internet surfing.
fblack61