Tagged Questions
The sqldependency tag has no wiki summary.
4
votes
2answers
600 views
How to track changes in many SQL Server databases from .NET application?
Problem:
There are a lot of different databases, which is populated by many different applications directly (without any common application layer). Data can be accessed only through SP (by policy)
...
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 ...
3
votes
1answer
174 views
A generic utility to subscribe to SQL table changes
After a while of searching the internet, I found this piece of code that triggers upon a LINQ-based change to the Database. It trigger only once and doesn't mention or show what was ...
3
votes
1answer
618 views
LINQ to SQL and SqlDependency
Are there any implications of using SqlDependency and LINQ to SQL together. Or do we have to take care of some things specially to make them work properly?
In our application we are using LINQ to SQL ...
3
votes
2answers
768 views
How to apply Sql Dependency in ASP.NET MVC?
How can we apply Sql Dependency in Asp.Net MVC for cached objects?
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
290 views
How can I use SqlDependency in a class?
I have a big problem. When I implement a SqlDependency watcher in a windows form, everything works fine as long as I invoke my "OnChance" event to the ui thread.
private void ...
2
votes
1answer
658 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
1answer
61 views
Elect one web application instance to perform a task triggered by an external event?
I have an ASP.NET application running on multiple IIS6 web servers, with a SQL Server 2005 database back-end.
I need to:
monitor the database for the completion of an external job event, and then
...
2
votes
1answer
885 views
NHIbernate SysCache2 and SQLDependency problems
I've set enable_broker on my SQL Server 2008 to use SQLDepndency
I've configured my .Net app to use Syscache2 with a cache region as follows:
<syscache2>
<cacheRegion ...
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
1answer
118 views
Getting SqlChangeMonitor to work
I am trying to get the new SqlChangeMonitor feature included in the System.Runtime.Caching namespace to work and am getting some unexpected results.
I have a simple console application setup as:
...
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
3answers
265 views
SQL Dependency on SQL Server 2008 Express
I have an application which successfully uses SqlDependency with SQL Server 2008 Standard Edition. But if I switch the connection string to SQL Server 2008 express (with enabled Broker) it stops ...
1
vote
1answer
387 views
PHP & MySQL: Check if table's data has changed without polling?
Is there a way to test if a MySQL table's data has changed at all, without connecting or querying.
This might sound weird, but in ASP.NET you can set up SqlDependencies that are kind of events that ...
1
vote
0answers
86 views
SqlDependency with SQL Cluster?
I have a short question about SqlDependency. I have two SQL 2005 servers configured in a failover cluster..
When the active node is changed I stop receiving notifications... i have to manually ...
1
vote
2answers
327 views
Alternatives to SQL Notification for triggering code on table changes
So I've just inherited an application which used the SQL Dependency function associated with SQL Notification Services in order to perform some functionality whenever one of the tables in the DB was ...
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
0answers
490 views
SqlDependency and table update do not refresh DataContext
I'm having trouble with the implementation of SqlDependency in my project.
I'm using SqlDependency in a WCF Service. WCF Service then holds in memory cache all results from all tables in order to ...
1
vote
1answer
367 views
Using SQLDependency/SqlNotificationRequest to have multiple instances of the same app receive the same notifications?
I started looking at this recently with the very limited knowledge that the ASP.NET Cache could somehow make use of a SqlCacheDependency to invalidate the cache when a table (or a queries results) ...
1
vote
1answer
563 views
Why is my SqlDependency not firing
I have a database running on MS SQL Server 2005 and an ASP.NET 3.5 web application.
The database contains a product catalog which I'm using to feed "pages" into a CMS running in the web app. Once the ...
1
vote
1answer
622 views
SqlDependency in asp.net
I'm using SqlDependency to control my cache. I want to use it to monitor several tables (around 10). There should be one SqlDependency per watched table.
Should I create for each of them code like ...
1
vote
0answers
122 views
Methods to enable Sql Notification Services
What is the difference in the following mentioned things, are these used for differnet purposes or are they used collectively for some functionality, can anyone please differentiante among these based ...
1
vote
0answers
121 views
SqlDependency throwing Invaild Operation exception
In our project we are invalidating the cache based on the change in the query output. This is implemented using change notifications. In the Global.asax file in the Application Start block we have ...
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 ...
1
vote
2answers
381 views
SQL Dependency with SQL Server express 2005
Is it possible to use SQL Dependency with SQL Server Express 2005 which comes with VS 2008?
0
votes
0answers
8 views
possible of multiple sqldependancy in vb.net?
Basically my code is based on here
http://www.dreamincode.net/forums/topic/185244-using-sqldependency-to-monitor-sql-database-changes/
Current situation is i'm having 2 table wish to monitor so i ...
0
votes
0answers
43 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
2answers
36 views
SqlDependency (change notifications) in Compact Edition?
I guess the answer is no, but I'm asking anyway: SQL Server 2005 and later supports the implementation of live views on queries through the service broker mechanism. The .NET class SqlDependency uses ...
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
1answer
31 views
Sql Server not creating subscription for simple select query using SqlCacheDependency
I was trying to implement a simple SQLCacheDependency to cache objects in my asp.net application.
After breaking my head for quite a while, I seem to have hit a dead end and thought an outside view ...
0
votes
0answers
18 views
Do I need to specify the same query for SqlCacheDependency which I used to query the db?
Lets say I use a query as below to get a large result set.
Select UserID,FirstName, LastName, City, Age from UserInfo where DateDiff(d,GetDate,LastActiveOn) > 180
Now, I want to cache each ...
0
votes
2answers
103 views
SqlDependency not working with Entity Framework
I have an issue when trying to start the SqlDependency.
The error informs me: Keyword not supported: 'metadata'.
The connectionstring is the following when retrieved from the immediate window ...
0
votes
0answers
50 views
SQLDependency hangs on SQL Server restart
I have application which registers multiple SQLDependencies; and events are fired when change occur in DB.
Everything works fine in normal circumstance but if we restart SQL Server multiple times ...
0
votes
0answers
72 views
SQLDependency blocking deletions from the table it is monitoring
I am using SQLDependency to notify an application when changes are made to table in a SQL Server 2008 R2 database.
Deleting a small number of rows from a table that SQLDependency is monitoring ...
0
votes
1answer
78 views
SqlDependency, how does it work?
Using SqlDependency, we no need to use a timer to check if data is changed.
However how does it work? If the data changed, the sql server notify us, right?
If we have a query related to 2 tables: ...
0
votes
0answers
82 views
A few questions about SqlDependency/SqlCacheDependency
I have a few questions that i would like to clear
Can u use SqlDependency or SqlCacheDependency to find out which particular data item has changed in the database?
Right now , i am using ...
0
votes
0answers
110 views
SqlDependency in .NET doesnt work
I am trying to work with sqlDependency.... I have pasted the code in pastebin. Please take a look at it and tell me whats wrong. What i am basically doing is setting up a sqldependency to a table . ...
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
1answer
92 views
How can I propogate an event in a windows service to the WCF service it is hosting so that the WCF service will raise a callback to the client?
Here is what I want to do:
Have a windows service that hosts a WCF service. This service also will get notifications from SQL Server via SQLDependency.
When the windows service gets notified by SQL ...
0
votes
1answer
56 views
ASP.NET Best way to queue a report in sql and then update the user when it's available
I want to allow users on the website to queue a report (enter the request in a sql table). The queue will be processed by a windows app that will read the queue from the sql server, run the reports, ...
0
votes
0answers
126 views
Problem with SQLDependency in asp.net mvc
I'm trying to crate functionality that notifies the application when a change on database has occured. I use SQLDependency for this, so i have checked out various tutorials (for instance this one, and ...
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
201 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
64 views
Could Query Notiifications be used in C++ ? if yes then how, if not, may be there is an alternative
Could Query Notiifications be used in C++ ? if yes then how, if not, may be there is an alternative..
MSDN provides C# examples on how to use query notifications using sqlDependency, but I need to ...
0
votes
0answers
61 views
Is there something like “sqldependency in .NET” for Qt?
does qt provide something like sqldependency as .NET? I'm trying to find something like sqldependency in the .NET framework but for C++ on QT.
0
votes
2answers
224 views
SQL dependency event fires on Alter Database but not on Table changes
Working on someone else's code where they've instituted a SQL Dependency event (SQL 2008). Not something I'm terribly familiar with so was just doing some reading and some testing.
The event is ...