create database replication definition

Creates a replication definition for replicating a database or a database object.

Syntax

create database replication definition db_repdef
           with primary at server_name.db
           [[not] replicate DDL]
           [[not] replicate setname setcont]
           [[not] replicate setname setcont]
           [[not] replicate setname setcont]
           [[not] replicate setname setcont]
            [[not] replicate {SQLDML | DML_options} [in table_list]]
setname  ::= {tables | functions | transactions | system procedures}
setcont  ::= [[in] ([owner1.]name1[, [owner2.]name2 [, ... ]])]
Note: The term functions in setname refers to user-defined stored procedures or user-defined functions.

Parameters

Examples

Usage

  • create database replication definition lets you replicate all, all with some exceptions, or only some of the tables, functions, transactions, and system procedures from the primary database.

  • Use create database replication definition alone or in conjunction with table and function replication definitions.

  • With only a database replication definition, that is, without table or function replication definitions, Replication Server cannot transform data. However, it can perform minimal column replication. This data replication behavior is similar to that of a default warm standby.

    For a database replication definition to replicate encrypted columns without using a table level replication definition, you must define the encryption key for the encrypted column with INIT_VECTOR NULL and PAD NULL. If a table in the database includes encrypted columns where the encryption key was created with random padding (the default) or initialization vectors, a table level replication definition is required to ensure database consistency.

  • Database replication definitions are global objects. They are replicated to all Replication Servers that have a route from the defining Replication Server.

  • Database replication definitions do not affect request function replication.

  • Table and function filters are not implemented if table and function subscriptions exist.

  • Replication Server does not process owner information for functions and system procedures.

Owner Information

  • Replication Server always uses owner information provided in the database replication definition.

  • Replication Server does not use owner information provided in a table replication definition if the table is marked with sp_reptostandby.

  • Replication Server only uses owner information provided in a table replication definition if the table is marked by sp_setreptable with the owner_on clause.

SQL Statement Replication

  • To replicate SQL statements in an MSA environment, you must include the replicate SQLDML clause in your replication definition.

  • You can use multiple replicate clauses in a create database replication definition. However, for an alter database replication definition, you can use only one clause.

  • If you do not specify a filter in your replication definition, the default is the not replicate clause. Apply alter database replication definition to change the SQLDML filters. You can either specify one or multiple SQLDML filters in a replicate clause.

  • If a table replication definition with send standby clause is defined for a table, the SQL replication settings of the table replication definition overrides the settings defined in the database replication definition for that table.

Related reference
alter database replication definition
drop database replication definition