Questions tagged [sqldependency]

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.

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.

MSDN Documentation

454 questions
-1
votes
1 answer

SqlDependency issue on asp.net

This part give me a error something like this, Object reference not set to an instance of an object. here is the my code which raised when any changes happen on sql server. private void dependency_OnDataChangedDelegate(object sender,…
sakir
  • 3,391
  • 8
  • 34
  • 50
-1
votes
1 answer

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 onNotificationChange from SqlDependency brings…
Jeka Developer
  • 141
  • 1
  • 12
-1
votes
1 answer

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 to be performed I need to import the whole data…
prateek
  • 69
  • 1
  • 1
  • 4
-2
votes
1 answer

sql dependency query in c# throwing invalid sql, but works in sql server management studio

SQL query to check for dependency is throwing invalid when it runs and give results in sql server management studio. Can someone help to find out what is wrong in it. i need to have SUM to display end results public void GetAllTicket() { …
coder771
  • 368
  • 5
  • 17
1 2 3
30
31