Tables [dbo].[RevenueImportType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)4
Created4:57:08 PM Thursday, September 7, 2006
Last Modified1:53:17 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_RevenueImportType: PriKeyPriKeyint4
No
1 - 1
Indexes IX_RevenueImportType_Name: NameNamevarchar(50)50
No
VanlineGroupExternalCodevarchar(10)10
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_RevenueImportType: PriKeyPK_RevenueImportTypePriKey
Yes
IX_RevenueImportType_NameName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[RevenueImportType]
(
[PriKey] [int] NOT NULL IDENTITY(1, 1),
[Name] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[VanlineGroupExternalCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RevenueImportType] ADD CONSTRAINT [PK_RevenueImportType] PRIMARY KEY NONCLUSTERED  ([PriKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RevenueImportType] ADD CONSTRAINT [IX_RevenueImportType_Name] UNIQUE NONCLUSTERED  ([Name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[RevenueImportType] TO [MssExec]
GRANT INSERT ON  [dbo].[RevenueImportType] TO [MssExec]
GRANT DELETE ON  [dbo].[RevenueImportType] TO [MssExec]
GRANT UPDATE ON  [dbo].[RevenueImportType] TO [MssExec]
GO
Uses
Used By