Managing database replication definitions

A table, a function, a transaction, DDL, or a system stored procedure can be a replicated object. A database replication definition specifies filters for replicated objects—either including or excluding the same or entire replicated object from replication. For example:

create database replication definition rep_1C
  with primary at PDS.pdb
    replicate tables in (table1, table2)
    not replicate functions in (fc_a)
    not replicate system procedures
    replicate transactions
    replicate DDL

In this example, we are replicating:

We are not replicating:

See “create database replication definition” in the Replication Server Reference Manual for complete syntax and usage information.

NoteDatabase replication definitions do not support the options send-standby-all-columns, send-standby-all-parameters, and send_standby_repdef_cols. Where a database replication definition exists, Replication Server sends all columns or parameters.