solidDB Help : Configuring and administering : Configuring solidDB : Managing parameters : Format of configuration parameter names and values
  
Format of configuration parameter names and values
The rules for configuration parameter names and values are the same regardless of whether the parameters are set through the solid.ini file or an ADMIN COMMAND:
The section and parameter names are not case-sensitive.
The string values are not case-sensitive.
In most cases, units are not case-sensitive. For example, to specify that the units are in megabytes, you can use any of the following strings: m, M, MB, mb, Mb, or mB. Some units are case-sensitive and such cases are documented: for example, time units "s" (seconds) and "ms" (milliseconds).
The syntax for a parameter value setting is:
param_name[space_chars]=[space_chars]value_literal[space_chars]unit_of_measure
where
param_name is the parameter name. When used in an ADMIN COMMAND, the parameter name must be the full parameter name, including the section name, for example, Logging.DurabilityLevel. When used in the solid.ini file, the parameter does not include the section name, since the parameter must already be listed under the appropriate section header.
value_literal is the value to be assigned to the parameter. The value is usually a literal, such as the number 12, or a string, such as "tcp MyServer2 1315". The following rules apply when you use an ADMIN COMMAND:
If you specify no value, the parameter startup value is set.
If you assign a parameter value with an asterisk (*), the parameter factory value is set.
String literals normally need to be in double quotation marks if they are used in an ADMIN COMMAND.
unit_of_measure is the unit of measure, for example MB for megabytes or ms for milliseconds.
[space_chars] represents places where spaces are allowed but not required.
For example, the following forms are valid:
CacheSize=32M
cachesize=32m
CacheSize = 32 m
Go up to
Managing parameters