Tagged Questions
3
votes
1answer
75 views
SQL Dependency in C#
I'm trying to figure out how to use SQL Dependency (C# 4.0) to 'listen' for changes to a database. I've seen quite a few things on the web, but they seem to be tailored (naturally) for using the ...
2
votes
1answer
137 views
What are the limitations of SqlDependency
I am using using a table as a message queue and "signing up" for up for updates by using a SqlDependency. Everywhere I read people are saying look out for the limitations of it but not specifically ...
2
votes
2answers
307 views
Using SqlDependency results in constant updates
I pulled an example from this MSDN page and have used it pretty much verbatim. When run the code compiles properly but changeCount increments endlessly whether or not there has actually been a change ...
2
votes
1answer
279 views
Caching with SqlDependency
I'm using SqlDependency to monitor for changes in a database. Let's say, these are stock quotes, to make the example easy to understand. The application also uses (another) SqlDependeny-Object to ...
2
votes
1answer
657 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 ...
2
votes
2answers
728 views
SqlDependency query with WHERE clause not allowed. How can I modify it to be valid?
I have a SqlDependency set up using the following query:
string sql = "SELECT dbo.Case.CMRID, dbo.Case.SolutionID, dbo.Case.CreateDT, dbo.Case.ModifyDT "
+ "FROM dbo.Case "
+ "WHERE dbo.Case.ModifyDT ...
1
vote
1answer
72 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, ...
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
294 views
SqlDependency - How do I interpret the SqlNotificationEventArgs properties?
I'm using the SqlDependency class and have been been trying unsuccessfully to find a list of possible combinations of the Type, Source and Info properties of the SqlNotificationEventArgs object.
...
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
0answers
42 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
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
93 views
Using the AddSqlDependency() method for query notifications
I've been trying to find examples on how to use the AddSqlDependency() method. Actually I tried finding out how to use it, but when I tried to add a command using this method it didn't work.
I also ...
0
votes
0answers
361 views
c# examples SqlDependency.AddCommandDependency()
I've been searching for C# examples of the SqlDependency.AddCommandDependency() method, but I couldn't find a useful example of how to add and remove an SQLCommand to the SQLDependency.
I would be ...
0
votes
1answer
200 views
SqlDependency subscription is registered with hard-coded SQL command, but not with LINQ
I am trying to get SQL Dependency notifications working with LINQ.
I am successful with hard-coded command text:
using (SqlConnection conn = new SqlConnection(ConnStr))
{
...
0
votes
1answer
210 views
SqlDependency not working selectively?
I'm trying to observe some data in my SQL server express 2005 like this:
SqlDependency.Stop(connectionString);
SqlDependency.Start(connectionString);
using (var con = new ...
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
135 views
Is the event fired, when previous handler didn't finish?
Does SqlDependency (for example) fires the OnChange event, when the invocation of previous event handler didn't finish? (Assume that OnDependencyChange method is very time consuming)
What exactly ...
0
votes
4answers
1k views
SQLDependency thread
i am in the process implementing SQLdepenency i would like to know in case of Dependency Handler exeuctues will it spun a different thred from main Process ? What will happen when the event handler ...