Field |
Field Type |
Null |
Notes |
Description |
OWNERGUID |
uniqueidentifier |
|
|
Owner Guid |
OWNERTYPECODE |
tinyint |
|
Default = 0 |
Owner type code |
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. |
OWNERTYPE |
nvarchar(11) (Computed) |
 |
CASE [OWNERTYPECODE] WHEN 0 THEN N'Constituent' WHEN 1 THEN N'Team' WHEN 2 THEN N'Company' WHEN 3 THEN N'Household' WHEN 4 THEN N'Event' WHEN 5 THEN N'Site' END |
Provides a translation for the 'OWNERTYPECODE' field. |