Primary Key Field Type
 ID uniqueidentifier

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) 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 Key Field Type Null Notes Description
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.

Index Name Field(s) Unique Primary Clustered
 IX_TIMEZONEENTRY_DATEADDED DATEADDED    
 IX_TIMEZONEENTRY_DATECHANGED DATECHANGED      
 PK_TIMEZONEENTRY ID  
 UC_TIMEZONEENTRY_DISPLAYNAME DISPLAYNAME    
 UC_TIMEZONEENTRY_NAME NAME    

Trigger Name Description
 TR_TIMEZONEENTRY_AUDIT_UPDATE
 TR_TIMEZONEENTRY_AUDIT_DELETE

Referenced by Field
 BATCHCURRENCYEXCHANGERATE TIMEZONEENTRYID
 BATCHINTERACTION TIMEZONEENTRYID
 BATCHSTEWARDSHIPPLANSTEPUPDATE TIMEZONEENTRYID
 CURRENCYEXCHANGERATE TIMEZONEENTRYID
 CURRENCYEXCHANGERATEPROVIDER TIMEZONEENTRYID
 EXCHANGECALENDARITEMBATCH TIMEZONEENTRYID
 INTERACTION TIMEZONEENTRYID
 INTERNATIONALIZATIONINFO DEFAULTTIMEZONEENTRYID
 REVALUECOMMITMENTSPROCESS TIMEZONEENTRYID
 STEWARDSHIPPLANSTEP TIMEZONEENTRYID
 TIMEZONEENTRYADJUSTMENTRULE TIMEZONEENTRYID

Entity-Relationship diagram of this table