...
With 2-way replication there is an additional step that must be done to set the correct SCN number for the second replication.
1. Obtain the resetlogs SCN from the target database:
No Format | ||
---|---|---|
| ||
SQL> select resetlogs_change# from v$database; RESETLOGS_CHANGE# ----------------- 10892654 |
...
2. Edit the *.dbvrep script and change the word "RESETLOGS" to the actual SCN from the above SQL for the APPLY1 process by hand.
No Format | ||
---|---|---|
| ||
SET APPLY1.INSTANTIATE_SCN 10892654 |
...
3. Run the Run *all.sh script as per normal and follow the instructions in the Nextsteps.txt
...