Tables [dbo].[SCBillingMeterBaseCycleCharges]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:59:07 AM Thursday, March 21, 2019
Last Modified1:07:08 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK__SCBillin__05D99EAB734FCF42: BillingMeterBaseCycleChargeIDBillingMeterBaseCycleChargeIDint4
False
1 - 1
BillingMeterIDint4
False
BillingMeterGroupIDint4
False
CycleChargeDetailIDint4
False
BaseFromDatedatetime8
False
BaseToDatedatetime8
False
DistPercentdecimal(18,6)9
False
DistBilledCoveredCopiesdecimal(18,6)9
False
DistBaseAmountmoney8
False
CreatorIDvarchar(8)8
True
CreateDatedatetime8
False
(getdate())
UpdatorIDvarchar(8)8
True
LastUpdatedatetime8
False
(getdate())
Accrualbit1
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK__SCBillin__05D99EAB734FCF42: BillingMeterBaseCycleChargeIDPK__SCBillin__05D99EAB734FCF42BillingMeterBaseCycleChargeID
True
80
CREATE TABLE [dbo].[SCBillingMeterBaseCycleCharges]
(
[BillingMeterBaseCycleChargeID] [int] NOT NULL IDENTITY(1, 1),
[BillingMeterID] [int] NOT NULL,
[BillingMeterGroupID] [int] NOT NULL,
[CycleChargeDetailID] [int] NOT NULL,
[BaseFromDate] [datetime] NOT NULL,
[BaseToDate] [datetime] NOT NULL,
[DistPercent] [decimal] (18, 6) NOT NULL,
[DistBilledCoveredCopies] [decimal] (18, 6) NOT NULL,
[DistBaseAmount] [money] NOT NULL,
[CreatorID] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_SCBillingMeterBaseCycleCharges_CreateDate] DEFAULT (getdate()),
[UpdatorID] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_SCBillingMeterBaseCycleCharges_LastUpdate] DEFAULT (getdate()),
[Accrual] [bit] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SCBillingMeterBaseCycleCharges] ADD CONSTRAINT [PK__SCBillin__05D99EAB734FCF42] PRIMARY KEY CLUSTERED  ([BillingMeterBaseCycleChargeID]) ON [PRIMARY]
GO