Purpose
Defines if a table is replicated automatically using Unity self-healing feature and DATABASE SYNC command.
Syntax
OBJECT SET REPLICATION {<objectname>} [DEFAULT | NEVER | IMMEDIATE];Parameters
- objectname
- Fully qualified name of the target object.
- DEFAULT | NEVER | IMMEDIATE
- With NEVER, the table is not replicated.
Examples
The replication option for [4143] db1.table1 has been set to IMMEDIATE.
unityadmin> OBJECT SET REPLICATION db1.table1 IMMEDIATE;
The replication option for [4143] db1.table1 has been set to NEVER.
unityadmin> OBJECT SET REPLICATION db1.table2 NEVER;