Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 2.67 KB

sys-transmission-queue-transact-sql.md

File metadata and controls

44 lines (39 loc) · 2.67 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sys.transmission_queue (Transact-SQL)
sys.transmission_queue (Transact-SQL)
rwestMSFT
randolphwest
03/04/2017
sql
system-objects
reference
transmission_queue
sys.transmission_queue_TSQL
sys.transmission_queue
transmission_queue_TSQL
sys.transmission_queue catalog view
TSQL

sys.transmission_queue (Transact-SQL)

[!INCLUDE SQL Server SQL MI]

This catalog view contains a row for each message in the transmission queue, as shown in the following table:

Column name Data type Description
conversation_handle uniqueidentifier Identifier for the conversation that this message belongs to. Not NULLABLE.
to_service_name nvarchar(256) Name of the service that this message is to. NULLABLE.
to_broker_instance nvarchar(128) Identifier of the broker that hosts the service that this message is to. NULLABLE.
from_service_name nvarchar(256) Name of the service that this message is from. NULLABLE.
service_contract_name nvarchar(256) Name of the contract that the conversation for this message follows. NULLABLE.
enqueue_time datetime Time at which the message entered the queue. This value uses UTC regardless of the local time zone for the instance. Not NULLABLE.
message_sequence_number bigint Sequence number of the message. Not NULLABLE.
message_type_name nvarchar(256) Message type name for the message. NULLABLE.
is_conversation_error bit Whether this message is an error message.

0 = Not an error message.

1 = Error message.

Not NULLABLE.
is_end_of_dialog bit Whether this message is an end of conversation message. Not NULLABLE.

0 = Not an end of conversation message.

1 = End of conversation message.

Not NULLABLE.
message_body varbinary(max) The body of this message. NULLABLE.
transmission_status nvarchar(4000) The reason this message is on the queue. This is generally an error message explaining why sending the message failed. If this is blank, the message has not been sent yet. NULLABLE.
priority tinyint The priority level that is assigned to this message. Not NULLABLE.

Permissions

[!INCLUDEssCatViewPerm] For more information, see Metadata Visibility Configuration.