Tables [dbo].[ReductionTemplateRateLookupBasis]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)3
Created3:44:52 PM Tuesday, May 8, 2012
Last Modified11:13:41 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_ReductionTemplateRateLookupBasis: ReductionTemplateRateLookupBasisIDReductionTemplateRateLookupBasisIDint4
No
1 - 1
BasisNamevarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_ReductionTemplateRateLookupBasis: ReductionTemplateRateLookupBasisIDPK_ReductionTemplateRateLookupBasisReductionTemplateRateLookupBasisID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReductionTemplateRateLookupBasis]
(
[ReductionTemplateRateLookupBasisID] [int] NOT NULL IDENTITY(1, 1),
[BasisName] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionTemplateRateLookupBasis] ADD CONSTRAINT [PK_ReductionTemplateRateLookupBasis] PRIMARY KEY NONCLUSTERED  ([ReductionTemplateRateLookupBasisID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT INSERT ON  [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT DELETE ON  [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReductionTemplateRateLookupBasis] TO [MssExec]
GO
Uses
Used By