Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Listing of the conflict with the LIST CONFLICT command

...

Viewing all the conflicts

It is also possible to obtain the conflict information directly from the Dbvisit Replicate repository. Logon to the apply (target database) as the Dbvisit Replicate schema owner (dbvrep) and query table:

No Format
bgColorCCC
DBRSAPPLY_CONFLICT_LOG

...

The column SQL_TEXT contains the actual SQL statement that is run against the target database and includes the bind variables.

How much time is spend on the conflict

Conflicts will slow down the replication process as extra resources are required to process the conflicts

To determine how much time is spent retrying/waiting for conflicts to resolve, the following query can be used:

No Format
SQL> select sum (resolve_date-apply_date) from dbrsapply_conflict_log group by trunc(resolve_date);

The query will list the sum of all conflicts. The Query can be changed to group the time for each different conflict.