Tables [dbo].[ReductionTemplateDateBasis]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)0
Created9:18:20 AM Wednesday, October 15, 2025
Last Modified9:18:20 AM Wednesday, October 15, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_ReductionTemplateDateBasis: ReductionTemplateDateBasisIDReductionTemplateDateBasisIDint4
No
1 - 1
BasisNamevarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_ReductionTemplateDateBasis: ReductionTemplateDateBasisIDPK_ReductionTemplateDateBasisReductionTemplateDateBasisID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReductionTemplateDateBasis]
(
[ReductionTemplateDateBasisID] [int] NOT NULL IDENTITY(1, 1),
[BasisName] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionTemplateDateBasis] ADD CONSTRAINT [PK_ReductionTemplateDateBasis] PRIMARY KEY NONCLUSTERED  ([ReductionTemplateDateBasisID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReductionTemplateDateBasis] TO [MssExec]
GRANT INSERT ON  [dbo].[ReductionTemplateDateBasis] TO [MssExec]
GRANT DELETE ON  [dbo].[ReductionTemplateDateBasis] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReductionTemplateDateBasis] TO [MssExec]
GO
Uses