/
Loading a table while replication is ongoing

Loading a table while replication is ongoing

Problem Description

Is it possible to call the LOAD feature while replication is ongoing?

Solution

Yes there is a New Feature in 2.8 that allows this to occur.  The command is called PROCESS LOAD_REQUEST. You will need to make sure that the DBVREP schema has the proper privileges on the source:

grant select, flashback on chris.tab_tab to dbvrep

First Pause the mine:

dbvrep> pause mine Mine requested to pause.

Then PREPARE the table:

dbvrep> prepare table scott.emp Connecting to running apply [SCOTT.EMP]: [Apply table removed (0 metadata record(s)). Apply table added (1 metadata record(s)).] Connecting to running mine [SCOTT.EMP]: [Table prepared (1 internal records).] Table SCOTT.EMP instantiated at SCN *98389504*

LOAD the table:

Resume MINE:

 

Related content

Syncing one table with the Prepare and Load command
Syncing one table with the Prepare and Load command
More like this
Adding new table to replication without locking the table
Adding new table to replication without locking the table
More like this
Adding a Table in Replication Using PREPARE AS OF SCN Command
Adding a Table in Replication Using PREPARE AS OF SCN Command
More like this
Load a few tables in Target when replication is running and then re-sync them with Source
Load a few tables in Target when replication is running and then re-sync them with Source
More like this