Field |
Field Type |
Null |
Notes |
Description |
SEQUENCE |
int |
|
Default = 0 |
|
RECORDTYPECODE |
tinyint |
|
Default = 255 |
1=Auction Event, 2=Constituent, 3=Event Registrant, 4=Auction Item, 5=Auction Purchase, 6=Auction Package, 254=Error, 255=Unknown |
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. |
RECORDTYPE |
nvarchar(16) (Computed) |
 |
CASE [RECORDTYPECODE] WHEN 1 THEN N'Auction Event' WHEN 2 THEN N'Constituent' WHEN 3 THEN N'Event Registrant' WHEN 4 THEN N'Auction Item' WHEN 5 THEN N'Auction Purchase' WHEN 6 THEN N'Auction Package' WHEN 254 THEN N'Error' WHEN 255 THEN N'Unknown' END |
Provides a translation for the 'RECORDTYPECODE' field. |
WASLOOKEDUP |
bit |
|
Default = 0 |
|