Tagged Questions

4
votes
2answers
628 views

How to track changes in many SQL Server databases from .NET application?

Problem: There are a lot of different databases, which is populated by many different applications directly (without any common application layer). Data can be accessed only through SP (by policy) ...
2
votes
1answer
306 views

Caching with SqlDependency

I'm using SqlDependency to monitor for changes in a database. Let's say, these are stock quotes, to make the example easy to understand. The application also uses (another) SqlDependeny-Object to ...
2
votes
1answer
687 views

How to setup SqlDependency to monitor multiple tables

I am trying to figure out how to monitor more than one table with a SqlDependency. All the examples I have found are for one table. I have multiple classes that represent a monitor for a specific ...
1
vote
1answer
178 views

Getting SqlChangeMonitor to work

I am trying to get the new SqlChangeMonitor feature included in the System.Runtime.Caching namespace to work and am getting some unexpected results. I have a simple console application setup as: ...
1
vote
0answers
58 views

SQL Server Database Error - No database principal is defined for Sid 1-5-7

I am getting this error when trying to add SQL dependency. SQL Server Database Error - No database principal is defined for Sid Invalid Object name SQLQueueNotificationservice-XXXX What this error ...
1
vote
0answers
91 views

SqlDependency with SQL Cluster?

I have a short question about SqlDependency. I have two SQL 2005 servers configured in a failover cluster.. When the active node is changed I stop receiving notifications... i have to manually ...
1
vote
1answer
375 views

Using SQLDependency/SqlNotificationRequest to have multiple instances of the same app receive the same notifications?

I started looking at this recently with the very limited knowledge that the ASP.NET Cache could somehow make use of a SqlCacheDependency to invalidate the cache when a table (or a queries results) ...
0
votes
1answer
45 views

SqlDependency issues, Visual C++ .Net 3.5, SQL Server 2008

I'm having some issues integrating the SqlDependency service with my Windows Forms App, and I was hoping someone could help a rookie out. I just want to preface this with that, I know my database ...
0
votes
0answers
66 views

SQLDependency hangs on SQL Server restart

I have application which registers multiple SQLDependencies; and events are fired when change occur in DB. Everything works fine in normal circumstance but if we restart SQL Server multiple times ...
0
votes
0answers
92 views

A few questions about SqlDependency/SqlCacheDependency

I have a few questions that i would like to clear Can u use SqlDependency or SqlCacheDependency to find out which particular data item has changed in the database? Right now , i am using ...
0
votes
0answers
118 views

SqlDependency in .NET doesnt work

I am trying to work with sqlDependency.... I have pasted the code in pastebin. Please take a look at it and tell me whats wrong. What i am basically doing is setting up a sqldependency to a table . ...
0
votes
1answer
96 views

How can I propogate an event in a windows service to the WCF service it is hosting so that the WCF service will raise a callback to the client?

Here is what I want to do: Have a windows service that hosts a WCF service. This service also will get notifications from SQL Server via SQLDependency. When the windows service gets notified by SQL ...
0
votes
2answers
651 views

Returning data from sqldependency

I'm trying to write a vb.net application that uses an sql dependancy. The dependancy will be triggered when data is added to the database. I'm wondering if it's possible to have the dependancy ...