Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(100) |
|
Default = '' |
|
NUMBEROFDAYS |
int |
|
Default = 0 |
|
OCCURRENCECODE |
tinyint |
|
Default = 0 |
0=Before, 1=After |
OCCURRENCE |
nvarchar(6) (Computed) |
 |
CASE [OCCURRENCECODE] WHEN 0 THEN N'Before' WHEN 1 THEN N'After' END |
Provides a translation for the 'OCCURRENCECODE' field. |
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. |