solidDB Help : solidDB reference : Advanced Replication: Bulletin board parameters : Advanced Replication system parameter categories
  
Advanced Replication system parameter categories
Advanced Replication system parameters are divided into the following categories:
Read-only system parameters
Read-only system parameters are maintained by solidDB and can be read only by using the following syntax:
GET_PARAM(parameter_name)
The lifecycle of parameters in this category is one transaction, that is, values of these parameters is always initialized at the beginning of the transaction.
For full syntax and examples of usage see GET_PARAM() function.
Updateable transaction-level system parameters
Users can set and update transaction-level system parameters using the following function call inside the transaction:
PUT_PARAM(parameter_name, value)
Updateable system parameters are used by solidDB Advanced Replication to configure synchronization-related operations.
The lifecycle of parameters in this category is one transaction, that is, values of these parameters is always initialized at the beginning of the transaction.
For full syntax and examples of usage see PUT_PARAM() function.
Database catalog level system parameters
Database catalog level system parameters are set by using the following syntax:
SET SYNC PARAMETER(parameter_name value)
Parameters in this category are database catalog level parameters that are valid until changed or removed. They are specified as bulletin board parameters.
For full syntax and examples of usage see SET SYNC PARAMETER.
Go up to
Advanced Replication: Bulletin board parameters