Tables [dbo].[ReductionProfile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created3:41:51 PM Tuesday, May 8, 2012
Last Modified11:13:41 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_ReductionProfile: ReductionProfileIDReductionProfileIDint4
No
1 - 1
Indexes IX_ReductionProfile_Description: DescriptionDescriptionvarchar(30)30
No
IgnoreVLReductionsbit1
No
((0))
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_ReductionProfile: ReductionProfileIDPK_ReductionProfileReductionProfileID
Yes
IX_ReductionProfile_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReductionProfile]
(
[ReductionProfileID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[IgnoreVLReductions] [bit] NOT NULL CONSTRAINT [DF_ReductionProfile_IgnoreVLReductions] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionProfile] ADD CONSTRAINT [PK_ReductionProfile] PRIMARY KEY CLUSTERED  ([ReductionProfileID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReductionProfile] ADD CONSTRAINT [IX_ReductionProfile_Description] UNIQUE NONCLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReductionProfile] TO [MssExec]
GRANT INSERT ON  [dbo].[ReductionProfile] TO [MssExec]
GRANT DELETE ON  [dbo].[ReductionProfile] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReductionProfile] TO [MssExec]
GO
Uses
Used By