TIMEZONEENTRY
Contains definitions of time zones.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
DISPLAYNAME |
nvarchar(200) |
|
Default = '' |
Stores the display name of the time zone |
NAME |
nvarchar(200) |
|
Default = '' |
Stores the name of the time zone (this is the .Net TimeZoneInfo object ID for a time zone). |
ACTIVE |
bit |
|
Default = 1 |
Indicates whether time zone is active |
SEQUENCE |
int |
|
Default = 0 |
Stores the sequence for the time zone |
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. |
BASETIMEZONEOFFSET |
smallint |
|
Default = ((0)) |
Stores the base (non daylight savings time) offset in minutes from UTC for timezone |
Foreign Keys
Foreign Key |
Field Type |
Null |
Notes |
Description |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_TIMEZONEENTRY_DATEADDED |
DATEADDED |
|
|
yes |
IX_TIMEZONEENTRY_DATECHANGED |
DATECHANGED |
|
|
|
PK_TIMEZONEENTRY |
ID |
yes |
yes |
|
UC_TIMEZONEENTRY_DISPLAYNAME |
DISPLAYNAME |
yes |
|
|
UC_TIMEZONEENTRY_NAME |
NAME |
yes |
|
|
Triggers
Referenced by