The sysconfig table is an interface onto the registry and startup settings of the server instances in the cluster.
Table Columns
|
Name |
Type |
Description |
|
instance_id |
INTEGER |
Reference to the instance id within the cluster. References sysinstances (id) |
|
category |
VARCHAR |
Name of the group to which this value belongs. This is the registry key name. |
|
key |
VARCHAR |
Name of the registry string value or settings name. |
|
description |
VARCHAR |
Description of the purpose of the configuration setting. |
|
value |
VARCHAR |
Data of the registry value string or settings value. |
|
restart |
INTEGER |
Whether changing the value will require a restart to take effect (1), or effect is immediate (0). |
|
updatable |
INTEGER |
Is the parameter changable through the sysconfig table (1) or not (0). |
|
serialize |
INTEGER |
Is the parameter written to the registry on changes (1) or not (0). The value could always be in the registry and will be read if present. |
Related