Tables [dbo].[ValuationPerPound]
Properties
PropertyValue
HeapYes
Row Count (~)6
Created5:34:48 PM Monday, May 4, 2009
Last Modified11:13:41 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_ValuationPerPound: ValuationPerPoundIDValuationPerPoundIDint4
No
1 - 1
Indexes IX_ValuationPerPound_Amount: AmountAmountmoney8
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_ValuationPerPound: ValuationPerPoundIDPK_ValuationPerPoundValuationPerPoundID
Yes
80
IX_ValuationPerPound_AmountAmount
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ValuationPerPound]
(
[ValuationPerPoundID] [int] NOT NULL IDENTITY(1, 1),
[Amount] [money] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ValuationPerPound] ADD CONSTRAINT [PK_ValuationPerPound] PRIMARY KEY NONCLUSTERED  ([ValuationPerPoundID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ValuationPerPound] ADD CONSTRAINT [IX_ValuationPerPound_Amount] UNIQUE NONCLUSTERED  ([Amount]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ValuationPerPound] TO [MssExec]
GRANT INSERT ON  [dbo].[ValuationPerPound] TO [MssExec]
GRANT DELETE ON  [dbo].[ValuationPerPound] TO [MssExec]
GRANT UPDATE ON  [dbo].[ValuationPerPound] TO [MssExec]
GO
Uses
Used By