Is it possible to subscribe to BROKER_QUEUE_DISABLED for all queues on the server regardless of database? If so, what is the correct TSQL syntax for the registration command?
I tried this but received an error:
CREATE EVENT NOTIFICATION QueueDisabledNotificationON SERVER
WITH FAN_IN
FOR BROKER_QUEUE_DISABLED
TO SERVICE 'DisabledQueueNotificationService', 'current database';
"The specified event type(s) is/are not valid on the specified target object."
sql 2014