I am using the following command to read from the queue. But it returns only one row. I noticed that conversation_handle is unique for all messages. How can I read top 100 or all the rows from the queue in sql server?
RECEIVE *-- @handle=conversation_handle,
--@xml=CAST(message_body AS XML)
FROM EventData_Destination_Queue
↧