What is SqlDependency? As the word describes itself, it is used to notify your application or user when certain criteria or condition is satisfied. This condition (query in technical terms) is provided to SQL notification service to be observed upon and ask to be notified when the condition is met or the data changes. In short the SqlDependency provides capabilities to your application to monitor your database for data change without the hassles of continuously querying the database using timers or loops. I will walk you through the simplest way to enable SqlDependency in your application. For the purpose of this example I am using SQL Server 2012 Express, it also works for other versions of SQL database like SQL 2008 and 2005. The part of SQL Server that make things happen: SQL Server – SQL Service Broker and Queues. SQL Service broker (Ref: MSDN) – It is a feature of SQL » Read more

 Jsinh        

This steps will guide you to install SQL Server 2012 Express edition, code name “Denali”. The express edition is free version of SQL Server 2012 and is available for download from Microsoft site. Download the installer and run. Step 1: The installer will create a temporary folder in your C drive to extract the files required by the installation. Step 2: Once the extraction is completed, you will be presented with this welcome page. On left hand side of the application contains different tab links to choose your desired installation required. When you click on the “Options” tab link you will be able to see where the installer is located and what version x86 / x64 it is currently going to install. As we are installing the SQL Server 2012 fresh, click on “New SQL Server stand-alone installation and add features to an existing installation”, this will start configuring the process » Read more

 Jsinh