Tables [dbo].[InvoiceChargeAmountType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)2
Created4:57:07 PM Thursday, September 7, 2006
Last Modified11:13:39 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_InvoiceChargeAmountTypeID: InvoiceChargeAmountTypeIDInvoiceChargeAmountTypeIDint4
No
1 - 1
Typevarchar(128)128
No
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_InvoiceChargeAmountTypeID: InvoiceChargeAmountTypeIDPK_InvoiceChargeAmountTypeIDInvoiceChargeAmountTypeID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[InvoiceChargeAmountType]
(
[InvoiceChargeAmountTypeID] [int] NOT NULL IDENTITY(1, 1),
[Type] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InvoiceChargeAmountType] ADD CONSTRAINT [PK_InvoiceChargeAmountTypeID] PRIMARY KEY NONCLUSTERED  ([InvoiceChargeAmountTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[InvoiceChargeAmountType] TO [MssExec]
GRANT INSERT ON  [dbo].[InvoiceChargeAmountType] TO [MssExec]
GRANT DELETE ON  [dbo].[InvoiceChargeAmountType] TO [MssExec]
GRANT UPDATE ON  [dbo].[InvoiceChargeAmountType] TO [MssExec]
GO
Uses
Used By