Tagged Questions

4
votes
2answers
600 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) ...
1
vote
3answers
264 views

SQL Dependency on SQL Server 2008 Express

I have an application which successfully uses SqlDependency with SQL Server 2008 Standard Edition. But if I switch the connection string to SQL Server 2008 express (with enabled Broker) it stops ...
1
vote
0answers
86 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
2answers
327 views

Alternatives to SQL Notification for triggering code on table changes

So I've just inherited an application which used the SQL Dependency function associated with SQL Notification Services in order to perform some functionality whenever one of the tables in the DB was ...
1
vote
1answer
367 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) ...
1
vote
1answer
563 views

Why is my SqlDependency not firing

I have a database running on MS SQL Server 2005 and an ASP.NET 3.5 web application. The database contains a product catalog which I'm using to feed "pages" into a CMS running in the web app. Once the ...
1
vote
2answers
381 views

SQL Dependency with SQL Server express 2005

Is it possible to use SQL Dependency with SQL Server Express 2005 which comes with VS 2008?
0
votes
1answer
80 views

SqlDependency Without Executing a Query

Is it possible to run a SqlDependency in C# for Sql Server without executing a query? I have some tables that can grow fairly large. Executing a query across a table to tell if a row has changed can ...
0
votes
0answers
50 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
126 views

Problem with SQLDependency in asp.net mvc

I'm trying to crate functionality that notifies the application when a change on database has occured. I use SQLDependency for this, so i have checked out various tutorials (for instance this one, and ...
0
votes
2answers
224 views

SQL dependency event fires on Alter Database but not on Table changes

Working on someone else's code where they've instituted a SQL Dependency event (SQL 2008). Not something I'm terribly familiar with so was just doing some reading and some testing. The event is ...
0
votes
1answer
139 views

How do I debug Query Notifications on SQL Server?

I am trying to get query notifications to work, but my application is not receiving any notifications. How do I debug Query Notifications? I am using the code availble here ...
0
votes
1answer
187 views

What is the correct practice for updating a .net WCF service from SQL Server when data changes via replication

Environment: Replicated Server: SQL Server 2008 R2 Client Server: SQL Server Express Language: .Net 3.5 C# The replicated server will be continually updated by web services and have many of the ...
0
votes
2answers
627 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 ...