Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(100) |
|
Default = '' |
The name of the parameter set. |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
The description of the parameter set. |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
INITIALSTATUSCODE |
tinyint |
|
Default = 0 |
Initial status of the constituent recognition: 0 - Active, 2 - Pending |
INITIALSTATUS |
nvarchar(7) (Computed) |
 |
CASE [INITIALSTATUSCODE] WHEN 0 THEN N'Active' WHEN 2 THEN N'Pending' END |
Provides a translation for the 'INITIALSTATUSCODE' field. |