Tagged Questions
3
votes
1answer
175 views
A generic utility to subscribe to SQL table changes
After a while of searching the internet, I found this piece of code that triggers upon a LINQ-based change to the Database. It trigger only once and doesn't mention or show what was ...
2
votes
1answer
661 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
81 views
How do I clean SqlDependency from SQL Server memory?
How do I clean up the SQL Server to get rid of expired SqlDependency objects? After I receive the event from the SqlDepedency object, I need to create a new one before I can get a new event. However, ...
0
votes
0answers
43 views
SQL Dependency not Firing
I've tried setting up an SQL Dependency to fire on a "Count Rows" query (written in C#, SQL Server 2008 Express), but after the original subscription SQLNotificationType goes, the event handler never ...
0
votes
0answers
74 views
SQLDependency blocking deletions from the table it is monitoring
I am using SQLDependency to notify an application when changes are made to table in a SQL Server 2008 R2 database.
Deleting a small number of rows from a table that SQLDependency is monitoring ...
0
votes
2answers
534 views
Production SqlSiteMapProvider issue - all the items 'disappeared'?
We have several ASP.NET applications that use a sitemap which is populated via a VB.NET implementation of the SqlSiteMapProvider example found at Wicked Code. It is compiled to a DLL, then installed ...