Description of the illustration strms040.eps
This illustration shows the following process for row migration during propagation:
-
A user makes the following update to a table:
UPDATE hr.employees SET department_id=80 WHERE employee_id=190;
-
Before the update, the
department_id
was50
for the employee withemployee_id
equal to190
. -
The source database records the change in the redo log.
-
A capture process captures the change and enqueues it as an LCR at the source database.
-
A propagation dequeues the LCR and transforms the
UPDATE
into aDELETE
because the change satisfies a subset rule. -
The propagation propagates the transformed LCR to a queue at the destination database.
-
An apply process dequeues the change and applies it as a
DELETE
from anhr.employees
subset table. This subset table contains rows only for employees with adepartment_id
equal to50
.