Sql-server – Why does WAITFOR (RECEIVE FROM QUEUE) show up in the monitor incorrectly

service-brokersql serversql-server-2005

I kick off the following command in my app:

WAITFOR (RECEIVE CONVERT(int, message_body) AS Message FROM MyQueue)

When I run `sp_who2 active', I get Status=SUSPENDED and Command=DELETE

enter image description here

Note: moved from StackOverflow.

Best Answer

Because is a DELETE. RECEIVe is just syntactic sugar for something like

DELETE from queue
OUTPUT DELETED.*
WHERE status = <receivable>;

If you enable retention then is an UPDATE, and will show as an UPDATE. There are some details, like how conversation group locking is done, how the proper message ExactlyOnceInOrder semantics are ensured and the syntax tree of RECEIVE is not truly possible to be built in T-SQL. As I said, details...

Is no coincidence I recommend in Using Tables as Queues to use the OUTPUT clause of DELETE to 'dequeue' from a table...