NamedSystemParameter
- Last UpdatedMar 18, 2021
- 1 minute read
Contains one row for each system parameter. This view provides backward compatibility support for the NamedSystemParameter table, which has been replaced by the SystemParameter table.
|
Column |
Data type |
Description |
|---|---|---|
|
Name |
nvarchar(50) NOT NULL |
The unique name for the system parameter. |
|
Type |
varchar(7) NULL |
Used to specify the datatype for the system parameter value. Valid values are: NUMERIC, STRING. |
|
StringValue |
varchar(255) NULL |
The value of the system parameter. This column only contains values of type STRING. |
|
NumericValue |
real NULL |
The value of the system parameter. This column only contains values of type NUMERIC. |
|
Editable |
bit NULL |
Used to determine if the value of the named system parameter can be changed using the InSQL Console. 1 = Editable; 0 = Not editable. |
|
Description |
nvarchar(255) NULL |
The description of the system parameter. |