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.

This is the closest I've found so far. However, I know this doesn't cover everything because I've already seen the combination Change/Client/Error.

I'd really like to know if I'm handling all possible cases in the best possible way. That is, whenever possible I'd like to reestablish the "subscription". For instance the Change/Client/Error was do to a network issue that interrupted communication between SqlServer and my app. Once communication was reestablished I was able to recover successfully.

EDIT:

Maybe it would help if I gave some examples of the concerns I have. For the following questions when I say "recover" I mean reestablish a subscription at runtime, that is without manual intervention.

  • Is it safe to assume that a Type of Subscribe means there is nothing I can do to recover.
  • Is it safe to assume that a Source of Data will always have a Info of truncate, insert, update, or delete. If not will it always be something similar. I don't currently distinguish between these cases and I just reestablish the subscription and fetch the updated data.
  • Is it safe to assume that, with the possible exception of an Info of Alter, a Source of object means that my query is no longer valid and I won't be able to recover.
link|improve this question

50% accept rate
A bit off topic, but when you say you recover from Client/Error, do you call SqlDependency.Stop/Start before recreating the dependency? – Michał Drozdowicz Dec 14 '10 at 9:42
@Michał, I didn't need to call SqlDependency.Stop/Start to get the dependency working again. – drs9222 Dec 14 '10 at 11:53
ok, thanks. There's not a lot of verified info on this subject :/ – Michał Drozdowicz Dec 14 '10 at 13:03
@Michał, I've noticed :) – drs9222 Dec 14 '10 at 13:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.