Is there any way to check SQL Broker before creating then? I really need to skip in case of existing object:
CREATE MESSAGE TYPE MessageType
AUTHORIZATION dbo
VALIDATION = None;
CREATE CONTRACT MessageContract
(MessageType SENT BY ANY);
I'd like to try something like "IF EXISTS", but I didn't find the proper systable.
Thanks