Tagged Questions

3
votes
1answer
617 views

LINQ to SQL and SqlDependency

Are there any implications of using SqlDependency and LINQ to SQL together. Or do we have to take care of some things specially to make them work properly? In our application we are using LINQ to SQL ...
1
vote
0answers
52 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
121 views

SqlDependency throwing Invaild Operation exception

In our project we are invalidating the cache based on the change in the query output. This is implemented using change notifications. In the Global.asax file in the Application Start block we have ...
1
vote
2answers
996 views

SQL Server Notifications - My OnChange does not fire

I would like to make use of SQL Server notifications to capture insert events at my database within a winforms app. I am attempting to use the SQLDependency object. The MSDN articles make this seem ...
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
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 ...