Tables [dbo].[RevenueRatingImportInvoiceOmit]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)5
Created7:37:30 PM Tuesday, September 24, 2024
Last Modified7:37:30 PM Tuesday, September 24, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_RevenueRatingImportInvoiceOmit: RevenueRatingImportInvoiceOmitIDRevenueRatingImportInvoiceOmitIDint4
No
1 - 1
Cluster Key IX_RevenueRatingImportInvoiceOmit_DistCode: DistributionCodeDistributionCodevarchar(10)10
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_RevenueRatingImportInvoiceOmit: RevenueRatingImportInvoiceOmitIDPK_RevenueRatingImportInvoiceOmitRevenueRatingImportInvoiceOmitID
Yes
Cluster Key IX_RevenueRatingImportInvoiceOmit_DistCode: DistributionCodeIX_RevenueRatingImportInvoiceOmit_DistCodeDistributionCode
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[RevenueRatingImportInvoiceOmit]
(
[RevenueRatingImportInvoiceOmitID] [int] NOT NULL IDENTITY(1, 1),
[DistributionCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RevenueRatingImportInvoiceOmit] ADD CONSTRAINT [PK_RevenueRatingImportInvoiceOmit] PRIMARY KEY NONCLUSTERED  ([RevenueRatingImportInvoiceOmitID]) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IX_RevenueRatingImportInvoiceOmit_DistCode] ON [dbo].[RevenueRatingImportInvoiceOmit] ([DistributionCode]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT INSERT ON  [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT DELETE ON  [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GRANT UPDATE ON  [dbo].[RevenueRatingImportInvoiceOmit] TO [MssExec]
GO
Uses
Used By