Tables [dbo].[SHTimeZoneCodes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created1:00:44 AM Thursday, March 21, 2019
Last Modified1:15:34 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK__SHTimeZo__F40826911668B68B: TimeZoneCodeIDTimeZoneCodeIDint4
False
1 - 1
WindowsTZIndexint4
True
DisplayNamevarchar(255)255
True
StandardNamevarchar(32)32
True
StandardBiasint4
True
UsesDSTbit1
True
DaylightNamevarchar(32)32
True
DaylightBiasint4
True
Foreign Keys FK_SHTimeZoneCodes_TimeZoneTransitionID_ShTimeZoneTransitions: [dbo].[ShTimeZoneTransitions].TimeZoneTransitionIDTimeZoneTransitionIDint4
True
Activebit1
False
CreatorIDvarchar(15)15
False
UpdatorIDvarchar(15)15
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
ShortStandardNamevarchar(8)8
True
ShortDaylightNamevarchar(8)8
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK__SHTimeZo__F40826911668B68B: TimeZoneCodeIDPK__SHTimeZo__F40826911668B68BTimeZoneCodeID
True
80
NameColumns
FK_SHTimeZoneCodes_TimeZoneTransitionID_ShTimeZoneTransitionsTimeZoneTransitionID->[dbo].[ShTimeZoneTransitions].[TimeZoneTransitionID]
CREATE TABLE [dbo].[SHTimeZoneCodes]
(
[TimeZoneCodeID] [int] NOT NULL IDENTITY(1, 1),
[WindowsTZIndex] [int] NULL,
[DisplayName] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[StandardName] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[StandardBias] [int] NULL,
[UsesDST] [bit] NULL,
[DaylightName] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[DaylightBias] [int] NULL,
[TimeZoneTransitionID] [int] NULL,
[Active] [bit] NOT NULL,
[CreatorID] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[UpdatorID] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_SHTimeZoneCodes_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_SHTimeZoneCodes_LastUpdate] DEFAULT (getdate()),
[ShortStandardName] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ShortDaylightName] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SHTimeZoneCodes] ADD CONSTRAINT [PK__SHTimeZo__F40826911668B68B] PRIMARY KEY CLUSTERED  ([TimeZoneCodeID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SHTimeZoneCodes] ADD CONSTRAINT [FK_SHTimeZoneCodes_TimeZoneTransitionID_ShTimeZoneTransitions] FOREIGN KEY ([TimeZoneTransitionID]) REFERENCES [dbo].[ShTimeZoneTransitions] ([TimeZoneTransitionID])
GO