Tables [dbo].[InvoiceRequirementType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)3
Created5:00:23 PM Monday, April 21, 2008
Last Modified11:13:40 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_InvoiceRequirementType: InvoiceRequirementTypeIDInvoiceRequirementTypeIDint4
No
1 - 1
Descriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_InvoiceRequirementType: InvoiceRequirementTypeIDPK_InvoiceRequirementTypeInvoiceRequirementTypeID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[InvoiceRequirementType]
(
[InvoiceRequirementTypeID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InvoiceRequirementType] ADD CONSTRAINT [PK_InvoiceRequirementType] PRIMARY KEY NONCLUSTERED  ([InvoiceRequirementTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[InvoiceRequirementType] TO [MssExec]
GRANT INSERT ON  [dbo].[InvoiceRequirementType] TO [MssExec]
GRANT DELETE ON  [dbo].[InvoiceRequirementType] TO [MssExec]
GRANT UPDATE ON  [dbo].[InvoiceRequirementType] TO [MssExec]
GO
Uses
Used By