Tagged Questions
2
votes
1answer
292 views
How can I use SqlDependency in a class?
I have a big problem. When I implement a SqlDependency watcher in a windows form, everything works fine as long as I invoke my "OnChance" event to the ui thread.
private void ...
2
votes
1answer
61 views
Elect one web application instance to perform a task triggered by an external event?
I have an ASP.NET application running on multiple IIS6 web servers, with a SQL Server 2005 database back-end.
I need to:
monitor the database for the completion of an external job event, and then
...
1
vote
2answers
328 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
625 views
SqlDependency in asp.net
I'm using SqlDependency to control my cache. I want to use it to monitor several tables (around 10). There should be one SqlDependency per watched table.
Should I create for each of them code like ...
1
vote
0answers
122 views
Methods to enable Sql Notification Services
What is the difference in the following mentioned things, are these used for differnet purposes or are they used collectively for some functionality, can anyone please differentiante among these based ...
0
votes
0answers
18 views
Do I need to specify the same query for SqlCacheDependency which I used to query the db?
Lets say I use a query as below to get a large result set.
Select UserID,FirstName, LastName, City, Age from UserInfo where DateDiff(d,GetDate,LastActiveOn) > 180
Now, I want to cache each ...
0
votes
1answer
56 views
ASP.NET Best way to queue a report in sql and then update the user when it's available
I want to allow users on the website to queue a report (enter the request in a sql table). The queue will be processed by a windows app that will read the queue from the sql server, run the reports, ...
0
votes
2answers
533 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 ...
0
votes
2answers
312 views
SqlCacheDependency in n-Tier Architekture
I read some articles about SqlCacheDependency. I think it is a really cool way for updating caches, but i'm not sure how i can handle this technologie if my application is a n-tier architekture.
Is ...