根据使用查询通知的限制SqlDependency
,
我们如何使用服务代理 SEND 语句以 .netSqlDependency
可以捕获并将其解析为所需的有效消息的方式发送查询通知?
我的意思是这样的:
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);
@msg
我的和应该是什么ENCRYPTION
?