<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://70.231.62.181/index.php?action=history&amp;feed=atom&amp;title=SQL_Server_Notification_Services</id>
	<title>SQL Server Notification Services - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://70.231.62.181/index.php?action=history&amp;feed=atom&amp;title=SQL_Server_Notification_Services"/>
	<link rel="alternate" type="text/html" href="http://70.231.62.181/index.php?title=SQL_Server_Notification_Services&amp;action=history"/>
	<updated>2026-05-01T02:28:26Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>http://70.231.62.181/index.php?title=SQL_Server_Notification_Services&amp;diff=14503324&amp;oldid=prev</id>
		<title>imported&gt;Cander0000: replaced official url with archive url as a reference and external link</title>
		<link rel="alternate" type="text/html" href="http://70.231.62.181/index.php?title=SQL_Server_Notification_Services&amp;diff=14503324&amp;oldid=prev"/>
		<updated>2024-11-22T05:52:53Z</updated>

		<summary type="html">&lt;p&gt;replaced official url with archive url as a reference and external link&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;SQL Server Notification Services&amp;#039;&amp;#039;&amp;#039; is a platform developed by Microsoft for the development and deployment of [[Notification service|notification applications]] based on [[Microsoft SQL Server|SQL Server technology]] and the [[Microsoft]] [[.NET Framework]]. Notification Services offers a scalable server engine on which to run notification applications, with multi-server capability-providing flexibility and scalability for deploying applications.&amp;lt;ref&amp;gt;{{cite web|url=http://www.microsoft.com/sqlserver/2005/en/us/notification-services.aspx#FAQ |title=SQL Server 2017 on Windows and Linux |publisher=Microsoft |access-date=2019-04-08}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notification Services was designed to ease the pain of developing and deploying notification applications that generate personalized, timely information to subscribers.&amp;lt;ref&amp;gt;{{cite web |url=http://www.microsoft.com:80/sql/technologies/notification/default.mspx |title=Microsoft SQL Server: Notification Services |archive-url=https://web.archive.org/web/20080408184034/http://www.microsoft.com:80/sql/technologies/notification/default.mspx |archive-date=2008-04-08}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To design, code and test all of the components that make up a robust Notification Services Application-such as notification scheduling, failure detection, retry logic, time zone management, notification grouping, and queue management, adding Notification Services to software applications can be a daunting task.&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
Over the years the term &amp;#039;&amp;#039;&amp;#039;Notification applications&amp;#039;&amp;#039;&amp;#039; has been superseded with the term [[Complex event processing|Complex Event Processing (CEP)]]. The idea is that the user defines a set of Rules (or Queries) in advance, and then push data through those rules. Should the data fit any of the criteria of the Rules then some action is fired. For example: A rule may state &amp;quot;If car speed through sensor is above 100 km/h, take photo and record&amp;quot; otherwise all other data is discarded.&lt;br /&gt;
 &lt;br /&gt;
This approach is much faster than the traditional OLTP design of; Insert the row(s) into the database while constantly polling the data to see if something relevant has happened. It is especially suited to situations where you have high speed inputs, a fixed set of fairly simple queries and may not need to keep all the data.{{Citation needed|date=January 2012}} e.g.: Some industries measure the voltage, current and other attributes of hundreds of electric motors in their conveyor belts, 100 times each second. Then compare each measurement to its average, plant operators are alerted should a sudden change occur.&lt;br /&gt;
&lt;br /&gt;
==Release history==&lt;br /&gt;
SQL Server Notification Services was one of the many components that comprised Microsoft SQL Server. It was first released in Microsoft SQL Server 2000 Service Pack 2 (2003). An enhanced release shipped in SQL Server 2005.&lt;br /&gt;
It was discontinued and removed from SQL Server 2008,&amp;lt;ref&amp;gt;{{cite web|url=http://social.msdn.microsoft.com/forums/en-US/sqlnotificationservices/thread/3f2dbd91-f223-411d-9c66-07be3ffcfed2/ |title=What happend &amp;amp;#91;sic&amp;amp;#93; with NS in 2008? |publisher=Social.msdn.microsoft.com |access-date=2019-04-08}}&amp;lt;/ref&amp;gt; although SQL Server 2005 SP3 allows for the &amp;#039;&amp;#039;&amp;#039;Notification Services&amp;#039;&amp;#039;&amp;#039; components to be run against the SQL Server 2008 Database Engine.&amp;lt;ref&amp;gt;{{cite web|url=https://msdn.microsoft.com/en-us/library/dd353312(SQL.90).aspx |title=What&amp;#039;s New in SQL Server 2005 SP3 &amp;amp;#124; Microsoft Docs |publisher=Msdn.microsoft.com |date=2008-11-17 |access-date=2019-04-08}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
It has been replaced by StreamInsight which first shipped as a component of SQL 2008 R2. StreamInsight is a separate install and not visible as a part of a regular SQL Server setup.&lt;br /&gt;
&lt;br /&gt;
==Extensibility and programmability==&lt;br /&gt;
A programming framework based on [[Transact-SQL]] and [[XML]], provides a declarative programming model, and lends itself to quick prototyping and deployment of robust notification applications.&lt;br /&gt;
&lt;br /&gt;
An [[Application programming interface|API]] for creating subscription management applications is provided, plus standard components for collecting event data from files and SQL Server databases, for formatting notifications using [[XSLT]], and for sending notifications via [[Simple Mail Transfer Protocol]] (SMTP) or by writing notifications to a file.&lt;br /&gt;
&lt;br /&gt;
If the standard components do not meet the needs of an application, Notification Services is extendable by building custom components using the .NET family of programming languages, such as [[C Sharp (programming language)|Microsoft Visual C# .NET]] and [[Visual Basic|Microsoft Visual Basic .NET]].&lt;br /&gt;
&lt;br /&gt;
Finally, Notification Services can communicate with a wide variety of Microsoft, third-party, and custom-built event providers and delivery protocols, enabling Notification Services to communicate with existing systems in heterogeneous environments.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Apple Push Notification Service]]&lt;br /&gt;
* [[Google Cloud Messaging]]&lt;br /&gt;
* Boomerang Software Framework&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
* &amp;#039;&amp;#039;Microsoft SQL Server 2005 Notification Services&amp;#039;&amp;#039;, Shyam Pather, Sams Publishing, {{ISBN|978-0-672-32779-7}}&lt;br /&gt;
* &amp;#039;&amp;#039;The Rational Guide to SQL Server Notification Services&amp;#039;&amp;#039;, Rational Press, {{ISBN|978-0-9726888-1-9}}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://web.archive.org/web/20060507201118/http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=97&amp;amp;SiteID=1 Forums]&lt;br /&gt;
* {{webarchive |url=https://web.archive.org/web/20080408184034/http://www.microsoft.com:80/sql/technologies/notification/default.mspx |title=Microsoft Official Website |archive-date=2008-04-08}}&lt;br /&gt;
* [https://www.microsoft.com/technet/prodtechnol/sql/2005/technologies/ntfcsvcs.mspx TechNet]&lt;br /&gt;
&lt;br /&gt;
{{MS DevTools}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft database software]]&lt;br /&gt;
[[Category:Push technology]]&lt;/div&gt;</summary>
		<author><name>imported&gt;Cander0000</name></author>
	</entry>
</feed>