Primary DB (19c) : TESTDB_PRIM (standby)
Standby DB (19c) : TESTDB_STD (cascade standby)
SQL> select inst_id,process, thread#, sequence#, status from gv$managed_standby where process='MRP0';
---------- --------- ---------- ---------- ------------
1 MRP0 1 973244 WAIT_FOR_GAP
--------- ------------ ---------- ---------------------- --------------------- ----------
TESTDB MOUNTED 1 975607 973243 2364
TESTDB MOUNTED 3 945126 942906 2220
TESTDB MOUNTED 2 995543 993282 2261
--------- ------------ ---------- ---------------------- --------------------- ----------
TESTDB MOUNTED 1 975607 973243 2364
TESTDB MOUNTED 3 945126 942906 2220
TESTDB MOUNTED 2 995545 993282 2263
PR00 (PID:397954): FAL: Failed to request gap sequence
PR00 (PID:397954): GAP - thread 1 sequence 973244-973343
PR00 (PID:397954): DBID 3401882687 branch 943793862
PR00 (PID:397954): FAL: All defined FAL servers have been attempted
PR00 (PID:397954): -------------------------------------------------------------------------
PR00 (PID:397954): Check that the CONTROL_FILE_RECORD_KEEP_TIME initialization
PR00 (PID:397954): parameter is defined to a value that's sufficiently large
PR00 (PID:397954): enough to maintain adequate log switch information to resolve
PR00 (PID:397954): archived redo log gaps.
PR00 (PID:397954): -------------------------------------------------------------
How to Roll Forward a Standby Database Using Recover Database From Service (Doc ID 2850185.1)
rman target / trace /var/logs/RMAN_INC_recover_01jun2023.log << EOF
alter session set NLS_DATE_FORMAT='DD-MON-YY HH24:MI:SS';
select sysdate from dual;
{
allocate channel c1 type disk;
allocate channel c2 type disk;
allocate channel c3 type disk;
allocate channel c4 type disk;
allocate channel c5 type disk;
allocate channel c6 type disk;
allocate channel c7 type disk;
allocate channel c8 type disk;
allocate channel c9 type disk;
allocate channel c10 type disk;
recover database from service TESTDB_PRIM section size 5g;
}
select sysdate from dual;
0 comments:
Post a Comment