| NAME |
nvarchar(100) |
|
Default = '' |
The name of the event. |
| DESCRIPTION |
nvarchar(255) |
|
Default = '' |
The description of the event. |
| STARTDATE |
date |
|
|
Starting date of the event. |
| STARTTIME |
UDT_HOURMINUTE |
|
Default = '' |
Starting time of the event. |
| ENDDATE |
date |
|
|
Ending date of the event. |
| ENDTIME |
UDT_HOURMINUTE |
|
Default = '' |
Ending time of the event. |
| CAPACITY |
int |
|
Default = 0 |
The maximum number of registrants allowed for the event. |
| ISACTIVE |
bit |
|
Default = 1 |
|
| 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. |
| SCHEDULEID |
uniqueidentifier |
yes |
|
Uniquely identifies the scheduling run |
| PUBLICDESCRIPTIONTEXT |
nvarchar(max) |
|
Default = '' |
The plain text public description. |
| PUBLICDESCRIPTIONHTML |
nvarchar(max) |
|
Default = '' |
The HTML public description. |
| STARTDATETIMEWITHOFFSET |
datetimeoffset |
yes |
|
Event start date and time stored with UTC offset |
| ENDDATETIMEWITHOFFSET |
datetimeoffset |
yes |
|
Event end date and time stored with UTC offset |
| CUSTOMIDENTIFIER |
nvarchar(100) |
|
Default = '' |
User-definable custom identifier. |
| SEQUENCEID |
int |
|
|
Identity column used to increment the default lookupid. |
| LOOKUPID |
nvarchar(100) (Computed) |
yes |
(CASE LEN(CUSTOMIDENTIFIER) WHEN 0 THEN '8-' + CAST(SEQUENCEID AS nvarchar(20)) ELSE CUSTOMIDENTIFIER END) |
Unique identifier that supports user defined values as well as system generated values. |
| HIDEFROMCALENDAR |
bit |
|
Default = 0 |
Determines whether or not to hide this item from the event calendar. |
| DESIGNATIONSONFEES |
bit |
|
Default = 0 |
Determines whether or not event allows designations on fees. |
| SUPERCEDESPROGRAMPUBLICDESCRIPTION |
bit |
|
Default = 0 |
For program events, determines whether or not to use the event public description in place of the program public description. |
| ISPROCESSED |
bit |
|
Default = 0 |
True when the event has occurred and no shows should be displayed as no shows and invitees who did not reply should be shown as not attended. |
| STARTDATETIME |
datetime (Computed) |
yes |
dateadd(mi, convert(tinyint, substring(STARTTIME, 3, 2)), dateadd(hh, convert(tinyint, substring(STARTTIME, 1, 2)), convert(datetime, STARTDATE))) |
The start date and time of the event. |
| ENDDATETIME |
datetime (Computed) |
yes |
dateadd(mi, convert(tinyint, substring(ENDTIME, 3, 2)), dateadd(hh, convert(tinyint, substring(ENDTIME, 1, 2)), convert(datetime, ENDDATE))) |
The end date and time of the event. |
| HASCUSTOMREGISTRATIONINFORMATION |
bit |
|
Default = 0 |
|