Use the SET SYNC PROPERTY statement in a master database to set a property name and value for a specified replica database.
Use the SAVE SET SYNC PROPERTY statement in a replica database to set a property name and value for the current database.
Replicas that have the same property and property value can be grouped, and the group can be specified when using the START AFTER COMMIT statement. For more information, see Replica property names.
Parameters, clauses, keywords, and variables
▪ NONE: Deletes an existing property.
Examples
Master:
SET SYNC PROPERTY color = 'red' FOR REPLICA replica1; SET SYNC PROPERTY color = NONE FOR REPLICA replica1;
Replica:
SAVE SET SYNC PROPERTY color = 'red'; SAVE SET SYNC PROPERTY color = NONE;