我正在尝试让查询通知在 SQL Server 2012 上运行。我正在关注此链接上的教程:http: //www.codeproject.com/Articles/144344/Query-Notification-using-SqlDependency-and-SqlCach
我最终得到的是 OnChange 事件不断被触发。SqlNotificationEventArgs 显示 Info=Invalid,Source=Statement,Type=Subscribe。
根据我的研究,我发现它在订阅时遇到了问题,但我不知道为什么。在 SQL Server 事件日志中,我得到的只是
The query notification dialog on conversation handle '{D30D3675-9A2F-E311-A141-8851FB594FAA}.' closed due to the following error:
'<?xml version="1.0"?><Error xmlns="http://schemas.microsoft.com/SQL/ServiceBroker/Error"><Code>-8470</Code><Description>Remote service has been dropped.</Description></Error>'.
我已经解决了常见问题,例如确保我使用的是两部分表名,并且我的查询没有做任何禁止的事情。这是设置事件的代码:
public DataTable RegisterDependency()
{
this.CurrentCommand =
new SqlCommand("Select CategoryID,CategoryName,Description from dbo.[Categories]", this.CurrentConnection);
this.CurrentCommand.Notification = null;
SqlDependency dependency = new SqlDependency(this.CurrentCommand);
dependency.OnChange += this.dependency_OnChange;
if (this.CurrentConnection.State == ConnectionState.Closed)
this.CurrentConnection.Open();
try
{
DataTable dt = new DataTable();
dt.Load(this.CurrentCommand.ExecuteReader(CommandBehavior.CloseConnection));
return dt;
}
catch { return null; }
}
我不知道接下来要检查什么。任何帮助表示赞赏。