Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • DISCARD: ignore the offending SQL and continue with the next one
  • FORCE: ignore the conflict, leave the SQL applied and continue with the next one (this differs from DISCARD only if the SQL actually changes something, i.e. the conflict is "too many rows updated/deleted")
  • OVERWRITE: do not check old values, try again with just primary key in the where clause (thus this will fail if there is no row at all on apply with the PK value)
  • NEWER,OLDER: look into target table (by primary key) and get values of specified columns (usually dates or number sequence). If the source row is newer/older, the operation becomes OVERWRITE, otherwise DISCARD.
  • PLSQL: call user-specied specified PL/SQL function.  More information is available in PL/SQL conflict handler section. 

...