Tables [dbo].[GLStandards]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:23 AM Thursday, March 21, 2019
Last Modified1:11:14 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK_GLStandards: StandardIDStandardIDint4
False
StandardNumbervarchar(15)15
False
Sourcevarchar(15)15
False
Referencevarchar(15)15
False
Descriptionvarchar(255)255
False
Reversingbit1
False
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
timestamptimestamp8
True
Foreign Keys FK_GLStandards_PostingCycleID_SCBillingCycles: [dbo].[SCBillingCycles].PostingCycleIDPostingCycleIDint4
True
NextDatedatetime8
True
EndDatedatetime8
True
AllowEAgentPostingbit1
False
((0))
TargetDayint4
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_GLStandards: StandardIDPK_GLStandardsStandardID
True
80
NameColumns
FK_GLStandards_PostingCycleID_SCBillingCyclesPostingCycleID->[dbo].[SCBillingCycles].[BillingCycleID]
CREATE TABLE [dbo].[GLStandards]
(
[StandardID] [int] NOT NULL,
[StandardNumber] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Source] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Reference] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Description] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Reversing] [bit] NOT NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_GLStandards_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_GLStandards_LastUpdate] DEFAULT (getdate()),
[timestamp] [timestamp] NULL,
[PostingCycleID] [int] NULL,
[NextDate] [datetime] NULL,
[EndDate] [datetime] NULL,
[AllowEAgentPosting] [bit] NOT NULL CONSTRAINT [DF_GLStandards_AllowEagentPosting] DEFAULT ((0)),
[TargetDay] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GLStandards] ADD CONSTRAINT [PK_GLStandards] PRIMARY KEY CLUSTERED  ([StandardID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GLStandards] ADD CONSTRAINT [FK_GLStandards_PostingCycleID_SCBillingCycles] FOREIGN KEY ([PostingCycleID]) REFERENCES [dbo].[SCBillingCycles] ([BillingCycleID])
GO