Yes this is related to the error I had in thread632-1647254.
I'm attempting to write a dashboard application, that gives some statistics for the date/month including: today's count of new orders, order's shipped, top sales rep's for the day, and number of new accounts this month.
Right now I have the application polling the database on a timer, though as you can imagine the network traffic this causes is significant.
I found that SQL Server 2005 (which we are using) had a feature that I could subscript to change notifications use SqlDependency. I played around on a test database to see how that worked, and it worked pretty good, so I changed one of the queries pulling data for the dashboard to use SqlDependency. My dashboard didn't crash, but I did start getting reports of the error I mentioned in the other thread.
For the programmers and db admins that may know more about this than I do: Are the "SET" option requirements for a GP database just not compatible with using SqlDependency? Or is there a way I can have my cake and it it too?
Thanks.
I'm attempting to write a dashboard application, that gives some statistics for the date/month including: today's count of new orders, order's shipped, top sales rep's for the day, and number of new accounts this month.
Right now I have the application polling the database on a timer, though as you can imagine the network traffic this causes is significant.
I found that SQL Server 2005 (which we are using) had a feature that I could subscript to change notifications use SqlDependency. I played around on a test database to see how that worked, and it worked pretty good, so I changed one of the queries pulling data for the dashboard to use SqlDependency. My dashboard didn't crash, but I did start getting reports of the error I mentioned in the other thread.
For the programmers and db admins that may know more about this than I do: Are the "SET" option requirements for a GP database just not compatible with using SqlDependency? Or is there a way I can have my cake and it it too?
Thanks.