Table that holds status of existing reservation keys.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
STATUSCODE |
tinyint |
|
Default = 0 |
The status code of a reservation key. |
STATUS |
nvarchar(8) (Computed) |
yes |
CASE [STATUSCODE] WHEN 0 THEN N'Inactive' WHEN 1 THEN N'Reserved' END |
Provides a translation for the 'STATUSCODE' 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) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_SPONSORSHIPOPPORTUNITYRESERVATIONSTATUS_DATEADDED |
DATEADDED |
|
|
yes |
IX_SPONSORSHIPOPPORTUNITYRESERVATIONSTATUS_DATECHANGED |
DATECHANGED |
|
|
|
PK_SPONSORSHIPOPPORTUNITYRESERVATIONSTATUS |
ID |
yes |
yes |
|
Triggers