Tables [dbo].[QueueServiceQueueExport]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created3:45:53 PM Thursday, December 6, 2018
Last Modified10:07:29 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_QueueServiceQueueExport: QueueServiceQueueExportIDQueueServiceQueueExportIDint4
No
1 - 1
Foreign Keys FK_QueueServiceQueueExport_QueueServiceSetup: [dbo].[QueueServiceSetup].QueueServiceSetupFIDIndexes IX_QueueServiceQueueExport_QueueServiceSetupFID_QueueServiceMessageTypeFID: QueueServiceSetupFID\QueueServiceMessageTypeFIDQueueServiceSetupFIDint4
No
Foreign Keys FK_QueueServiceQueueExport_QueueServiceMessageType: [dbo].[QueueServiceMessageType].QueueServiceMessageTypeFIDIndexes IX_QueueServiceQueueExport_QueueServiceSetupFID_QueueServiceMessageTypeFID: QueueServiceSetupFID\QueueServiceMessageTypeFIDQueueServiceMessageTypeFIDint4
No
Inactivebit1
No
((0))
ExportPathvarchar(255)255
Yes
DisableProcessingbit1
No
((0))
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_QueueServiceQueueExport: QueueServiceQueueExportIDPK_QueueServiceQueueExportQueueServiceQueueExportID
Yes
IX_QueueServiceQueueExport_QueueServiceSetupFID_QueueServiceMessageTypeFIDQueueServiceSetupFID, QueueServiceMessageTypeFID
Yes
Foreign Keys Foreign Keys
NameColumns
FK_QueueServiceQueueExport_QueueServiceMessageTypeQueueServiceMessageTypeFID->[dbo].[QueueServiceMessageType].[QueueServiceMessageTypeID]
FK_QueueServiceQueueExport_QueueServiceSetupQueueServiceSetupFID->[dbo].[QueueServiceSetup].[QueueServiceSetupID]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[QueueServiceQueueExport]
(
[QueueServiceQueueExportID] [int] NOT NULL IDENTITY(1, 1),
[QueueServiceSetupFID] [int] NOT NULL,
[QueueServiceMessageTypeFID] [int] NOT NULL,
[Inactive] [bit] NOT NULL CONSTRAINT [DF_QueueServiceQueueExport_Inactive] DEFAULT ((0)),
[ExportPath] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[DisableProcessing] [bit] NOT NULL CONSTRAINT [DF_QueueServiceQueueExport_DisableProcessing] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QueueServiceQueueExport] ADD CONSTRAINT [PK_QueueServiceQueueExport] PRIMARY KEY CLUSTERED  ([QueueServiceQueueExportID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QueueServiceQueueExport] ADD CONSTRAINT [IX_QueueServiceQueueExport_QueueServiceSetupFID_QueueServiceMessageTypeFID] UNIQUE NONCLUSTERED  ([QueueServiceSetupFID], [QueueServiceMessageTypeFID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QueueServiceQueueExport] ADD CONSTRAINT [FK_QueueServiceQueueExport_QueueServiceMessageType] FOREIGN KEY ([QueueServiceMessageTypeFID]) REFERENCES [dbo].[QueueServiceMessageType] ([QueueServiceMessageTypeID])
GO
ALTER TABLE [dbo].[QueueServiceQueueExport] ADD CONSTRAINT [FK_QueueServiceQueueExport_QueueServiceSetup] FOREIGN KEY ([QueueServiceSetupFID]) REFERENCES [dbo].[QueueServiceSetup] ([QueueServiceSetupID])
GO
GRANT SELECT ON  [dbo].[QueueServiceQueueExport] TO [MssExec]
GRANT INSERT ON  [dbo].[QueueServiceQueueExport] TO [MssExec]
GRANT DELETE ON  [dbo].[QueueServiceQueueExport] TO [MssExec]
GRANT UPDATE ON  [dbo].[QueueServiceQueueExport] TO [MssExec]
GO
Uses