This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @handle UNIQUEIDENTIFIER; | |
WHILE (SELECT COUNT(*) FROM NameOfQueue) > 0 | |
BEGIN | |
RECEIVE TOP (1) @handle = conversation_handle FROM NameOfQueue; | |
END CONVERSATION @handle WITH CLEANUP | |
END |