如何使用服务代理手动发送查询通知?

时间:2015-01-14 12:29:33

标签: sql-server service-broker query-notifications

根据查询通知的限制,使用SqlDependency

我们如何使用服务代理SEND语句以.net SqlDependency可以捕获并将其解析为所需的有效消息的方式发送查询通知?

我的意思是这样的:

BEGIN DIALOG @conversation
FROM SERVICE SenderService
TO SERVICE N'SqlQueryNotificationService-8dc7e234-7e23-47ab-8d62-13e83a6ae262'
ON CONTRACT [http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]
WITH ENCRYPTION=OFF;

--- Send the message
SEND ON CONVERSATION @conversation
MESSAGE TYPE [http://schemas.microsoft.com/SQL/Notifications/QueryNotification]
(@msg);

我的@msgENCRYPTION应该是什么?

0 个答案:

没有答案