Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

THe replication changes the set based operation on the source database to row-by-row changes on the target database. SQL issued on the source database can change arbitrary number of rows, Dbvisit Replicate will only affect changes made to individual rows on the target database. The consequence is that the SQL issued at the apply database is not the same issued against mine – instead, each SQL updates/deletes/inserts exactly one row, applying just one change.

Definition of a conflict

If either one or more of the following are true, then a conflict is raised:

  1. SQL affects zero rows. This causes data divergence and so a conflict is raised.
  2. SQL affects more than one row. This causes data divergence and so a conflict is raised.
  3. Oracle error. This can range from usual primary key or foreign key violation (another type of data divergence) to purely technical reasons (cannot extend datafile).
  4. Lock timeout. If the apply waits for a row lock more than WATCHDOG_TIMEOUT seconds, a conflict is also reported.

Notes:

  • Data divergence means that the data between the source and the target database is no longer in sync. The sooner data divergence is detected the easier it is too fix. Dbvisit Replicate will detect and notify as soon as any of the above issues are true (unless default conflict settings have been changed).
  • When applying a row-change, previous values of the row at apply are checked (by means of adding them to the where clause). This effectively detects if the data in that row are inconsistent between mine and apply, and this is reported as a conflict, "0 rows updated/deleted." This can happen for update or delete only (there is no previous row to check for insert) and due to its special role, it can be handled differently.
  • No labels