Tables [dbo].[QueueServiceMessageFormat]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
Created3:45:53 PM Thursday, December 6, 2018
Last Modified3:45:54 PM Thursday, December 6, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_QueueServiceMessageFormat: QueueServiceMessageFormatIDQueueServiceMessageFormatIDint4
No
1 - 1
Indexes IX_QueueServiceMessageFormat_FormatName: FormatNameFormatNamevarchar(30)30
No
FileExtensionvarchar(10)10
Yes
Exportablebit1
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_QueueServiceMessageFormat: QueueServiceMessageFormatIDPK_QueueServiceMessageFormatQueueServiceMessageFormatID
Yes
IX_QueueServiceMessageFormat_FormatNameFormatName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[QueueServiceMessageFormat]
(
[QueueServiceMessageFormatID] [int] NOT NULL IDENTITY(1, 1),
[FormatName] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[FileExtension] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Exportable] [bit] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QueueServiceMessageFormat] ADD CONSTRAINT [PK_QueueServiceMessageFormat] PRIMARY KEY CLUSTERED  ([QueueServiceMessageFormatID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[QueueServiceMessageFormat] ADD CONSTRAINT [IX_QueueServiceMessageFormat_FormatName] UNIQUE NONCLUSTERED  ([FormatName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[QueueServiceMessageFormat] TO [MssExec]
GRANT INSERT ON  [dbo].[QueueServiceMessageFormat] TO [MssExec]
GRANT DELETE ON  [dbo].[QueueServiceMessageFormat] TO [MssExec]
GRANT UPDATE ON  [dbo].[QueueServiceMessageFormat] TO [MssExec]
GO
Uses
Used By