The following properties can be used to handle a replication between HFSQL servers:
| | |
Property name | Type used | Effect |
---|
Bidirectional | Boolean | - True if the replication must be performed in both directions: the replication will be bidirectional.
- False otherwise (default value): the replication will be unidirectional.
|
Description | Character string | Description of replication. |
File | Array of strings | List of elements to replicate. The elements to replicate can correspond to: - a database,
- a data file,
- a data file to exclude from the replication. In this case, the name of the file must be prefixed by "-" (minus).
|
Identifier | Integer | Used to identify the replication handled. This property is available in read-only. |
Versions 22 and laterInitialization New in version 22Initialization Initialization | Integer | Used to follow the evolution of the initial copy of replicated elements from the connection server (master server) to the other server (subscriber server) during a copy in background task (HRSAddConfig associated with the hrsCopyBackgroundTask constant). If this property: - is included between 0 and 1000, the replication is currently added.
- is set to 1000, the replication was added.
- is not specified, the replication failed to be added.
This property is available in read-only. |
Password | Character string | Password specific to the replication. This password must correspond to the password specified in HRSInit used on the subscriber server. This property is available in write mode. |
Scheduling | hScheduling variable | Replication period. If all the members of the hScheduling variable are left empty, it will be a replication in streaming. |
ProcedureForModificationConflictResolution | Character string | Name of the stored procedure to use if the method for solving conflicts (..ModificationConflictResolution) corresponds to the hmcrProcedureWithModifiedItems constant or to the hmcrProcedureAllItems constant. This stored procedure must return: - the opRetry constant to validate the replication of the modification,
- the opCancel constant to cancel the replication of the modification.
This stored procedure must be found in the replicated database on the subscriber server. |
ModificationConflictResolution | Integer constant | Method for solving conflicts: - hmcrHigherPriority (default value): During a conflict, only the priority value defined for the server is taken into account. The smaller the priority value defined for the server is, the higher the priority granted to the server will be.
- hmcrMoreRecent: During a conflict, the more recent element has priority.
Caution: This method requires a synchronization of the clock on the different servers. - hmcrProcedureWithModifiedItems: During a conflict, a stored procedure (defined by ..ProcedureForModificationConflictResolution) is started. In this procedure, only the modified items will be accessible.
- hmcrProcedureAllItems: During a conflict, a stored procedure (defined by ..ProcedureForModificationConflictResolution) is started. In this procedure, all the items found in the record will be accessible.
|
Server | Character string | Server toward which the replication will be performed. This server is identified by: - its DNS name or its IP address.
- the replication port (4996 by default).
If the port differs from the default port, the following syntax must be used to specify it: "<Server name>:<Replication port>". This port must correspond to the port specified in HRSInit used on the subscriber server. |
Versions 25 and laterSpare New in version 25Spare Spare | Boolean | - True to perform a replication in spare mode,
- False otherwise.
Remark: This property is incompatible with ..Bidirectional. |