|
|
|
|
|
- Log-based replication: Directory for creating the files required by the replication and by the log process
HCreateSubscriberReplica (Function) In french: HCréeRéplicaAbonné
Available only with these kinds of connection
Creates the description file of a subscriber replica. The subscriber replica file extension is "rpl". This function can be used with the logged replication and/or with the universal replication Caution: When creating a subscriber replica, you must: Syntax
Universal replication Hide the details
<Result> = HCreateSubscriberReplica(<Master replica directory> , <Subscriber replica directory> , <Identifier> , <Identifier size range> , <List of tables to replicate> [, <Automatic modification>])
<Result>: Integer - Identifier of the subscriber replica that was created,
- 0 if no subscriber replica was created.
<Master replica directory>: Character string Directory where the master replica description file ("rpm" file) was created (HCreateMasterReplica). This directory can be a network directory or a UNC path. If this parameter corresponds to an empty string (""), the description file will be searched for in the current directory of HFSQL data files (defined in the data model editor or through programming). Caution: This directory must be accessible when HCreateSubscriberReplica is executed. <Subscriber replica directory>: Character string Directory where the subscriber replica description file must be created. This file is named Replica_<Identifier>.rpl. If this parameter corresponds to an empty string (""), the description file will be created in the current directory of HFSQL data files (defined in the data model editor or by programming). <Identifier>: Integer or character string Subscriber replica identifier. This identifier will be used by HCreateMovableReplica. A WLanguage error occurs if the specified identifier already exists. <Identifier size range>: Integer This parameter is ignored. <List of tables to replicate>: Character string This list has the following format:
<TableName>[+TAB+<NameDateItem>] [+<CR>+<TableName>[+TAB+<NameDateItem>]]... Caution: The order of the tables is important. The order of the tables is the order of the dependencies for the tables. If the records of file 1 are linked to the records of file 2 and if the record must be found in file 2 in order for the addition in file 1 to comply with the integrity rules, then file 1 must be positioned first in the list. For example, for the "Customer", "Orders" and "Order line" files (that are linked by links whose cardinalities are (0,n) - (1,1)), the "Customer" file must be positioned first (a customer must exist to add an order), then the "Orders" file (an order must exist to add an order line) and finally the "Order line" file. The name of Date item is mandatory for the databases not in HFSQL format. This item must correspond to an item of the data file updated during an addition or during a modification. This operation must be performed by the application. <Automatic modification>: Boolean - True to take into account the automatic data modification. In this case:
- Changes in the structure of the master database will be carried over to the subscriber database.
- The new items will be taken into account by the replication.
- False (default value). The automatic data modification performed on the master database is not carried over to the subscriber database.
Caution:- For existing replications, it is necessary to recreate a replication (as well as the subscribers) to implement this mechanism.
- This mechanism does not work if a unique key is added or deleted.
- This parameter is only available for replication between HFSQL databases (Classic or Client/Server).
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|