Reputation: 1132
The scenario at hand is that there are 2 extract - pump - replicat groups running currently. The requirement is to move one of the tables from group2 to group1.
Can we just stop the extract-pump-replicat , remove the table entry from group2 and directly add to group1 ? will it pick up directly and start replication from where group2 ended ?
I tried a mock run with the same setup and move the table from group2 to group1 and it seemed to work fine.
wanted to know if its the best approach, or do i need to take care of any additional details. o
Upvotes: 1
Views: 1311
Reputation: 1181
Yes, you can go with this approach. If the target is the same and you don't want to miss any transaction - you have to make sure that all transactions till some SCN are processed by the first Extract, and the following transactions (following SCN's) are processed with the second one.
There are many ways you can achieve this:
If you can not stop the source DB activity another approach would be:
Upvotes: 1