declare cur cursor for
	select conversation_handle from sys.transmission_queue
open cur;
fetch next from cur into @handle;
while @@fetch_status = 0
begin
	--print @handle
	end conversation @handle with cleanup;
	fetch next from cur into @handle
end
close cur;
deallocate cur;
Retrieved from http://test.databaser.net/moniwiki/wiki.php/Sys.transmission_queue에서대화종료하기
last modified 2018-04-13 23:12:53