Tagged Questions

3
votes
1answer
645 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 ...
2
votes
2answers
1k 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 ...
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
132 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 ...
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
1answer
26 views

possible of multiple sqldependancy in vb.net?

Basically my code is based on here http://www.dreamincode.net/forums/topic/185244-using-sqldependency-to-monitor-sql-database-changes/ Current situation is i'm having 2 table wish to monitor so i ...
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
234 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 ...