Tables [dbo].[QuoteServiceProviderBillTo]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created9:02:24 AM Friday, December 7, 2018
Last Modified9:02:42 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_QuoteServiceProviderBillTo: QuoteServiceProviderBillToIDQuoteServiceProviderBillToIDint4
No
1 - 1
Cluster Key IX_QuoteServiceProviderBillTo_Description: DescriptionDescriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_QuoteServiceProviderBillTo: QuoteServiceProviderBillToIDPK_QuoteServiceProviderBillToQuoteServiceProviderBillToID
Yes
Cluster Key IX_QuoteServiceProviderBillTo_Description: DescriptionIX_QuoteServiceProviderBillTo_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[QuoteServiceProviderBillTo]
(
[QuoteServiceProviderBillToID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QuoteServiceProviderBillTo] ADD CONSTRAINT [PK_QuoteServiceProviderBillTo] PRIMARY KEY NONCLUSTERED  ([QuoteServiceProviderBillToID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QuoteServiceProviderBillTo] ADD CONSTRAINT [IX_QuoteServiceProviderBillTo_Description] UNIQUE CLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[QuoteServiceProviderBillTo] TO [MssExec]
GRANT INSERT ON  [dbo].[QuoteServiceProviderBillTo] TO [MssExec]
GRANT DELETE ON  [dbo].[QuoteServiceProviderBillTo] TO [MssExec]
GRANT UPDATE ON  [dbo].[QuoteServiceProviderBillTo] TO [MssExec]
GO
Uses
Used By