High Availability Data Guard, Sharding and Global Data Services (MOSC)

MOSC Banner

Dataguard Rollback Standby to Primary

I have set Primary to mound mode, shutdown Standby and 'set state="APPLY-OFF"' Then run revert via RMAN on Primary
RMAN>
run
{
set until time "to_date('2021-10-17:00:00:00', 'yyyy-mm-dd:hh24:mi:ss')";
restore database;
recover database;
}
Then on Primary
SQL>ALTER DATABASE OPEN RESETLOGS;

Now SCN on Primary - 003, SCN on Standby - 009 (as example)

When I am trying to flashback Standby to Primary - On Standby flashback to SCN(RESETLOGS_CHANGE# - 2)

SQL>FLASHBACK STANDBY DATABASE TO SCN 001; 

I got - ORA-38729: Not enough flashback database log data to do FLASHBACK.

How it is possible to make sync (rollback Standby to Primary back-in-time-state) ?

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center