Printing the conflict resolution strategy (printconfresolutionstrategy) v7
For MMR only: The printconfresolutionstrategy
command displays the conflict resolution strategy and the standby conflict resolution strategy of the specified table.
Synopsis
-printconfresolutionstrategy pubname -repsvrfile pubsvrfile -table schema_t.table_name
See Conflict resolution for more information.
Note
The schema name and table or view name that you supply as values for the table parameter are case sensitive. Unless quoted identifiers were used to build the database objects, you must enter Oracle names using uppercase letters (for example, EDB.DEPT
) and EDB Postgres Advanced Server names in lowercase letters (for example edb.dept
). See Quoted identifiers and default case translation for more information.
Parameters
pubname
The name of the publication containing the table whose conflict resolution strategy you want to display.
pubsvrfile
The file containing the publication server login information.
schema_t
The name of the schema containing table_name
. This value is case sensitive.
table_name
The name of the table whose conflict resolution strategy you want to display. This value is case sensitive.
Examples
This example displays the conflict resolution strategy on the EDB Postgres Advanced Server table edb.emp in the publication emp_pub
.
$ java -jar edb-repcli.jar -printconfresolutionstrategy emp_pub \ > -repsvrfile ~/pubsvrfile.prop \ > -table edb.emp Primary/Standby Conflict Resolution Strategy... Conflict Resolution Option:[ Earliest Timestamp ] Standby Conflict Resolution Option:[ Manual ]
- On this page
- Synopsis
- Parameters
- Examples