The SqlDependency object represents a query notification dependency between an application and an instance of SQL Server. An application can create a SqlDependency object and register to receive notifications via the OnChangeEventHandler event handler.

learn more… | top users | synonyms

0
votes
0answers
18 views

SqlDependency planning + some changes are not triggered

I'm currently testing SqlDependency to see if it would make sense to implement it in my web application. What i'm currently noticing is this, if there is a difference of say 2 minutes between 1 ...
-2
votes
0answers
12 views

SqlDependency in tree layer programming [closed]

How can I use SqlDependency in tree layer programming? It seems that relate to Data Access layer. Thanks.
0
votes
1answer
39 views

Reload cache on change of database

I'm developing a .net client application which uses Entity Framework to access the database. It is a multiuser application where (sometimes) there are no changes for hours possibly days and sometimes ...
0
votes
0answers
15 views

Query Notification that runs an UPDATE in its handler (that changes the result of its query)

Here is a scenario. I have a Table in the DB called Session. Session has a Status field. This field has 4 possible values [NOTSTARTED,STARTED,COMPLETE,ERROR]. I have a .NET application, that among ...
1
vote
1answer
45 views

SqlDependency subscription not dropped from dm_qn_subscriptions on shutdown

My SqlDependency works fine, and the Broker Queue and Service get dropped properly when the application exists (I do execute SqlDependency.Stop(...) as recommended before terminating the process), yet ...
0
votes
1answer
87 views

Need help to implement signaR in C# asp.net Mvc

i want to call my signalR hub on sql dependency and update the db information displaying on the client. Any one please give me some idea to implement that. FYI : i implemented some html update, chat ...
0
votes
1answer
53 views

SqlDependency and notifications

I am working with MS SQL Server. I need to realize this: When one client of db changes some record of the table, this changes must be sent to all clients that subscribed with SqlDependency. But event ...
2
votes
0answers
126 views

ASP.net MVC OutputCache parameter priority - Duration vs SQLDependency

I'm building a ASP.net MVC 4 system that is very load intensive and want to use the OutputCache attribute on the two key pages. The OutputCache has the desired effect in making the pages very quick ...
0
votes
1answer
90 views

Async call of WCF using Duplex Communication to get Database change

I am implementing and WCF Async service using WsDualHttpBinding binding for duplex communication to get database changes. I have implemented the Service but I dont know how to call it from Client ...
0
votes
1answer
128 views

SqlDependency OnChange Not Firing

This is the first time I've ever needed to use an SqlDependency so I am hoping that its a stupid mistake I've made. The problem I'm having is that the OnChanged event doesn't fire when the sql table ...
0
votes
1answer
43 views

start two SqlDependency on same sqlconnection but different sql commands

I build some service that on start open two threads, each one start SqlDependency with same sql connection but the command its different. Its possible? its seems to working, but after some will when ...
0
votes
0answers
52 views

Get updated row in SqlDependency

is there any way to get updated record by SqlDependency? I won't use trigger.can any body help?
0
votes
3answers
166 views

getting data from sqldependency

I've got a table and a SqlDependency that is waiting for new inserts. OnChange fires as I need, but I don't understand if it's possible to get the row which cause the databse change. SqlDependency ...
0
votes
1answer
194 views

I want my database (SQL) to notify or push updates to client application

I was developing this application on VB.net 2010 and SQL 2008. I wanted the clients to be notified for updates on the db, and the application used to check the db for changes in the specified minute ...
0
votes
0answers
132 views

Implementing QUOTED_IDENTIFIER globally

I've implemented a mechanism with the help of SqlDependency that alerts me of any changes in a particular database table. But this breaks my existing functionality where I'm updating the database ...
0
votes
1answer
382 views

SignalR to create a realtime database notification for one user instance only

I'm trying to use SignalR to create a real time notification like facebook I'm using c# as server side language 1- i read the wiki in github and I know that I can notify only the connected user my ...
1
vote
0answers
87 views

Subscribe to row changes in a database and push if ther is any changes to client

I am building online auction application in asp.net mvc using EF code first, currently I am updating the latest bid amount polling via ajax every 5 seconds. is there any other way I can achieve the ...
0
votes
0answers
164 views

How efficient SqlDependency (Service Broker) is compared to query by timer?

I need to notify users (around 100 clients) of my software (C#, .NET 3.5) when there are new records added in one of the tables of my database (SQL Server 2008). If I understand it right, such ...
1
vote
0answers
99 views

SqlDependency dependency_OnChange Info “Query”

I have a very frustrating problem. My .net 4 app has been successfully using the SqlDependency object for some time to receive INSERT or UPDATE notifications from SQL server. However the database ...
1
vote
2answers
175 views

SqlDependency constant database hits

I have just copied the example from an official Microsoft source http://msdn.microsoft.com/en-us/library/a52dhwx7(v=vs.80).aspx and I am baffled by it. Having run the application, it makes constant ...
4
votes
1answer
506 views

Using SQLDependency vs. periodic polling of a table (performance impact)

In the beginning of our app's development, we were using SQLDependency quite heavily to cache db results until the notifications told our app to grab a fresh copy. During testing, we've noticed that ...
2
votes
0answers
79 views

Can I run multiplie instances of sqldependency in the same program

I have two threads each running sqldependency against different tables on the same database. Individually, both listeners work fine, when i run them concurrently, only one listener works. any ...
0
votes
0answers
106 views

WCF Service hosted in IIS, SQLDependency

I have searched on the internet on polling a dabatase every few minutes from a WCF service hosted in IIS and the best answer I could get is to use SQL Depedency. I have found a lot of articles on how ...
1
vote
1answer
101 views

Multiple SqlDependencies firing the same OnChange Event

I have a product catalog with a few hundred categories in it and I am dynamically creating an SqlDependency for each category in the catalog. The SqlCommands that these dependencies will be based on, ...
2
votes
1answer
502 views

SQLDependency + Service Broker

I'm using SqlDependency to get notification when data in some table are changed. private void subscribeBroker() { using (var conn = new SqlConnection(connString)) { ...
0
votes
0answers
179 views

SqlDependency (query notification) cause row updates to lock entire table

I'm using SqlDependency to monitor a table for changes. However, whenever SqlDependency begins monitoring a table, any updates to that table inside a transaction cause the entire table to get locked. ...
1
vote
0answers
146 views

How to remove objects from the cache when they are deleted from the database?

Over the last few months, I've been struggling to implement NHibernate in one of our ASP.NET MVC (Web API) web services projects. I'm using NHibernate 3.3.1, and I've downloaded and compiled SysCache2 ...
0
votes
2answers
178 views

Getting SqlCommand with EF

I made a SqlDependency service in my application. It works perfectly when I type the queries by hand but I cannot include wildcards (I don't really know why). For example: //Using this SqlCommand ...
2
votes
1answer
100 views

SQLDependency — Invalid SQL

Best I can tell from here, I am not breaking any rules with this query, but the change event fires constantly with an invalid status. SELECT COUNT_BIG([PK_Column]) AS RecordCount FROM ...
5
votes
1answer
1k views

SqlDependency Reliablity?

My current situation is that I have an application that needs to be notified when new data arrives in a database table. The data is coming from an external source (that I have no control over--this ...
0
votes
1answer
155 views

using SqlDependency class to populate ICollectionView with EntityFramework in C#

I want to refresh the ICollectionView object which has some product when a new product is added to database. How can I achieve this in C#, I am using EntityFramework for DAL.
0
votes
1answer
132 views

Why can't TOP be used with SQLDependency?

I have an application using SQLDependency. I want to display the most recent row inserted into a database table to the user when a new row is inserted. This works as expected when my query is a ...
4
votes
2answers
363 views

c# Long Polling with SQL dependency with IIS Inconsistent

The requirement from the customer was to be able to see refreshed data on the screen whenever there is any kind of change in a particular table in the database. We have a Job table in the DB whose ...
0
votes
0answers
68 views

store 4-5 datatables in cache depend on SqlDependency

I am creating WCF service which will host on IIS. I want to store 4-5 datatables in cache depend on SqlDependency?. Can u suggest me the best way to do the same. I would appreciate your quick ...
1
vote
2answers
169 views

Splitting work-queue among multiple processes

I have a situation where I believe a work-queue and a SqlDependency would be a good fit, but I'm having trouble piecing it all together. Let's say I have 1000 entities and each entity must be ...
2
votes
1answer
339 views

C# .NET SqlDependency

I have a question about the usage of SqlDependency in .NET. I've read the documentation, but it's still not clear to me if the OnChange event gets called in its own thread. So for example, if I get 30 ...
0
votes
1answer
650 views

C# - How to detect changes to SQL Server using SqlDependency?

I have a Windows Service that is supposed to wait for database changes. The database table it looks at looks like this : Id [Guid] Name [text] MatchId [Guid] => this is a foreign key ...
0
votes
0answers
94 views

How to set SqlDependency to ChildActions in MVC 3

I have searched a while and all topics relate to finding workarounds for "VaryByParam" and not SqlDependency. I have a summary Page where I display few Charts. I use the method outlined in this blog ...
1
vote
2answers
549 views

SQL Server 2008 R2 DeadLock on query Notification (SqlDependency)

I'm running into a deadlock issue on a SQL Server 2008 R2. When looking at the deadlock graph in the SQL Profiler, the problem seems to stem from query notifications : <resource-list> ...
0
votes
1answer
53 views

code to import tables in the order of their dependencies

I am working in a windows environment, and using oracle sql developer. I have the whole database of an organisation that consists of some 50 csv files. Each for a table.There are two tasks that are ...
0
votes
1answer
1k views

SqlDependency causes error in other application

I have a project where I need to monitor changes in a 3rd party database. SqlDependency seem like a good solution but it causes the following error in the 3rd party application. INSERT failed ...
0
votes
1answer
191 views

Outputcatching with SQLDependency not working on IIS 7

I am working on output caching SqlDependency with the help of this article. I have followed all the given steps and it is working fine when i am running the site through VS2010 but after publishing ...
1
vote
1answer
458 views

How to handle connection loss using .NET SqlDependency

I need to register SqlDependency to watch new data on remote SQL Server (2005). Connection loss is probable, because connections are across cities and countries. How should I to handle connection ...
1
vote
1answer
780 views

How to figure out which SQLDependency triggered change function?

I'm exploring query notifications with the SQLDependency class. Building a simple working example is easy, but I feel like I'm missing something. Once I step past a simple one-table/one-dependency ...
1
vote
1answer
712 views

SqlDependency doesn't fire OnChange event

EDIT: I Fixed it. What I did was change the owner of the database to something different then the user I used to connect to it. To check database owner: select name, suser_sname(owner_sid) from ...
0
votes
1answer
134 views

SqlDependency and Geography SQL Server

I'm trying to get the SqlDependency object to work with geography data, but I haven't found any information about it online. What geography functions work within the query notification system, and is ...
0
votes
4answers
625 views

SqlDependency simple select query always returns “Invalid”

I'm trying to get the SqlDependency object to give me notifications, but so far I'm not able to get it working. the sql query that I'm sending is this: SELECT [SocialMedia].[dbo].[Items].[Id] FROM ...
1
vote
0answers
159 views

StackoverflowException while using SqlDependencies with Ef Framework

I would like to get some feedback about using SqlDependencies with EF Framework 4.0. I have currently implemented a scenario using ObjectQuery in combination with toStraceString() to generate ...
3
votes
2answers
2k views

Using SignalR with SqlDependency to push database updates

Is is possible to use SignalR in combination with SqlCacheDependency (or SqlDependency) to push database updates directly to the browser ? Maybe there is an other way to achieve this functionality ? ...
1
vote
2answers
267 views

Monitor data changes in SQL Azure

Is there a way to to get notifications when SQL Azure data changes or when new data is inserted? I would like to send notifications to an ASP.NET web application and push notifications to a Windows ...

1 2 3