Tables [dbo].[AllocationCalculationType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created10:30:21 AM Monday, March 30, 2015
Last Modified10:30:29 AM Monday, March 30, 2015
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_AllocationCalculationType: AllocationCalculationTypeIDAllocationCalculationTypeIDint4
No
1 - 1
AllocationCalculationTypevarchar(30)30
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AllocationCalculationType: AllocationCalculationTypeIDPK_AllocationCalculationTypeAllocationCalculationTypeID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[AllocationCalculationType]
(
[AllocationCalculationTypeID] [int] NOT NULL IDENTITY(1, 1),
[AllocationCalculationType] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AllocationCalculationType] ADD CONSTRAINT [PK_AllocationCalculationType] PRIMARY KEY CLUSTERED  ([AllocationCalculationTypeID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[AllocationCalculationType] TO [MssExec]
GRANT INSERT ON  [dbo].[AllocationCalculationType] TO [MssExec]
GRANT DELETE ON  [dbo].[AllocationCalculationType] TO [MssExec]
GRANT UPDATE ON  [dbo].[AllocationCalculationType] TO [MssExec]
GO
Uses
Used By