我有一个项目,我需要监测第三方数据库更改。
的SqlDependency似乎是一个很好的解决方案,但它会导致第三方应用程序下面的错误。
INSERT失败,因为下列SET选项的设置不正确: 'ANSI_NULLS,QUOTED_IDENTIFIER,ANSI_PADDING'。 验证SET选项是对计算列和/或过滤索引和/或查询通知和/或XML数据类型的方法和/或空间索引操作索引视图和/或索引使用正确的。
(该应用程序下我的测试程序不运行时正常工作)
什么SET选项这是否是指什么?
唯一的一套操作我所做的是ALTER DATABASE TestDb SET ENABLE_BROKER
启用通知。
我还做了:
CREATE QUEUE ContactChangeMessages;
CREATE SERVICE ContactChangeNotifications
ON QUEUE ContactChangeMessages
([http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]);
这里是我的Linqpad测试代码,如果我在Management Studio中插入/更新/删除记录,工作正常。
void Main() {
const string cs = "Data Source=.;Initial Catalog=TestDb;Trusted_Connection=True";
var are = new AutoResetEvent(false);
using (var connection = new SqlConnection(cs)) {
connection.Open();
SqlDependency.Start(cs);
using (var cmd = new SqlCommand()) {
cmd.Connection = connection;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "SELECT orderNo FROM dbo.Orders WHERE ProductNo = '111'";
var dep = new SqlDependency(cmd, null, 60);
dep.OnChange += (s,e) => {
Console.WriteLine(e.Info);
are.Set();
};
using (var reader = cmd.ExecuteReader()) {
while (reader.Read()) {
}
}
are.WaitOne();
SqlDependency.Stop(cs);
}
}
}
我不知道,也不能更改,怎么第三部分应用程序连接到数据库。 如果需要更多的信息,我可以运行SQL事件探查器。