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 take a long time.

link|improve this question

there is a site that will help you answer that question msdn.microsoft.com/en-us/library/62xk7953(VS.80).aspx This site will show users how to subscribe to events when needing to check sqlDependency – DJ KRAZE Dec 27 '11 at 21:12
I have a working SqlDependency set up. I was just wondering if there was a way to do it without executing the "command.ExecuteResult()" command. I have set it up to work with "command.ExecuteNonQuery()", which works fine, but it still slows down when the table has several million rows to re-execute. – Stuart Dec 27 '11 at 21:14
feedback

1 Answer

up vote 2 down vote accepted

No, SqlDependency requires an SqlCommand to execute.

If performance is a problem, you could think about alternative designs, such as adding a trigger to the table that is to be monitored and writing into an extract table each time a row changes then have the SqlDependency monitor the extract table instead.

If any row that changes in the original table should trigger the dependency, then your extract table could be as simple as a single row that contains a counter of the number of rows that have changed. When this value changes, the dependency would be triggered.

Alternatively, the extract table could just contain a timestamp for the last date/time that any row in the table was changed.

link|improve this answer
Alright great. This is exactly what I needed. Thanks. – Stuart Dec 27 '11 at 21:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.