SQL Server Notification Services ForumLook here for Questions, answers, and advice on using SQL Server Notification Services© 2009 Microsoft Corporation. All rights reserved.Thu, 26 Nov 2009 16:16:09 Z0f05a8b5-5589-4ce4-b66f-2dbf12153379http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/d0694fba-cdd8-4c3f-ba9c-3ce5940a2845http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/d0694fba-cdd8-4c3f-ba9c-3ce5940a2845Dave0323http://social.msdn.microsoft.com/Profile/en-US/?user=Dave0323The Notification SP [dbo].[NSAdministrationHistory] doesn't return a correct value for the delivered count.All,<br/><br/>The stored procedure [dbo].[NSAdministrationHistory] in ..NSMain db for sql server notification doesn't return a correct NotificationSuccessfulDeliveredCount. I think the problem is from a &quot;AND DeliveryStatusCode = 0&quot; filter. Does anyone know when MS will fix this problem.<br/><br/>Here is a query statement from the sp above.<br/>-----------------------------------------------------------------------------------------------------------------------------------------------------------------------<br/>SELECT @NotificationBatchesAwaitingDistribution = ISNULL(SUM(CASE DeliveryStatusCode WHEN 0 THEN 1 ELSE 0 END), 0),<br/>                   @NotificationsSuccessfulDeliveredCount = ISNULL(SUM(CASE DeliveryStatusCode WHEN 6 THEN 1 ELSE 0 END), 0),<br/>                   @NotificationsFailedDeliveryCount = ISNULL(SUM(CASE DeliveryStatusCode WHEN 1 THEN 1 WHEN 4 THEN 1 WHEN 5 THEN 1 ELSE 0 END), 0)<br/>            FROM [FlightInstanceFlight].[dbo].[NSFlightNotificationsNotifications] WITH (READUNCOMMITTED)<br/>            WHERE SentTime &gt; @IntervalStartDateTime AND SentTime &lt;= @IntervalEndDateTime <strong>AND DeliveryStatusCode = 0</strong><br/>---------------------------------------------------------------------------------------------------------------------------------------------------------<br/><br/>Thanks in advance,<br/><br/>DaveThu, 26 Nov 2009 16:16:08 Z2009-11-26T16:16:09Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/8e70e957-7012-405b-a751-3df12cf66e25http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/8e70e957-7012-405b-a751-3df12cf66e25Ruhanihttp://social.msdn.microsoft.com/Profile/en-US/?user=RuhaniSending mails to multiple id'sHi,<br/><br/>How to send multiple mails from SQL Server 2005.<br/>The To-MailId's are to be picked from a query.<br/><br/>Please let me know how to implement this.<br/><br/>Regards,<br/>RuhaniThu, 19 Nov 2009 09:40:14 Z2009-11-25T03:42:31Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/c9fe99af-1aaf-4be6-abf4-510d7b5a3603http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/c9fe99af-1aaf-4be6-abf4-510d7b5a3603Philadutyhttp://social.msdn.microsoft.com/Profile/en-US/?user=PhiladutyThe Operation Timed OutRunning SQL 2005, I have a stored procedure that executes a query and sends an e-mail with pdf attachment to about 20-30 recipients.  Occasionally messages are successfully sent but lately most are failing.<br/><br/>The ones that are failing have a &quot;sent&quot; date 4 minutes after the triggered request.  The only error message reported in sysmail_event_log is: The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 8 (2009-11-17T18:06:41). Exception Message: Cannot send mails to mail server. (The operation has timed out.). )<br/><br/>We are not blocking port 25 and I am running out of options on how to resolve this.  I have set the retry to 2 and extended the minimum lifetime for databasemail to 800 seconds, i will see what happens tonight (11/18/09).Wed, 18 Nov 2009 17:55:59 Z2009-11-24T21:53:11Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/4e6e186c-f5d3-4a0d-8846-16ccf723ac39http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/4e6e186c-f5d3-4a0d-8846-16ccf723ac39itsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmihow to unsubscribe from a subscriptionhi <br/><br/>If i have some scheduled subscription like news letter and users keep on subscribing to it. now if some subscriber wants to un-subscribe ... how to do that?<br/><br/>or is it any Schedule End property as there is ScheduleStart? i mean i want to end daily subscription say by 15 days?<br/><br/>Regards,<br/>RashmiTue, 24 Nov 2009 12:35:48 Z2009-11-24T12:35:48Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/857f7f3d-48d8-4ddd-91b5-8abe10325c66http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/857f7f3d-48d8-4ddd-91b5-8abe10325c66itsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmiHow to create one time schedules for subscriptonshi<br/><br/>I have  a requirement to have a scheduled subscription where no recurrence is required that means notification should go only once. I cant configure this as event based as I required it to be triggered on some button click and should send notification and then should be done. <br/><br/>I gone through ScheduleRecurrence related documentation but it is not useful.<br/><span style="font-size:x-small"><br/>Please suggest.<br/><br/>Regards,<br/>Rashmi</span>Thu, 05 Nov 2009 13:52:06 Z2009-11-24T11:49:46Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/9add21f4-98fc-4baa-9efc-c35abdd64ae8http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/9add21f4-98fc-4baa-9efc-c35abdd64ae8jijeraldhttp://social.msdn.microsoft.com/Profile/en-US/?user=jijeraldMail not send through msdb.dbo.sp_send_dbmail when @Body contains a period(.) characterHi,<br/><br/>I am trying to use sp_send_dbmail to send a custom email. I am essentially using this for sending some custom alerts.<br/><br/>When I execute the following it works fine. I get the 'mail queued' message and I recieve the mail in mail account.<br/><br/> <p>EXEC msdb<span><span>.</span></span>dbo<span><span>.</span></span>sp_send_dbmail <br/>@recipients<span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'jithin.jerald@xyz.com'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@subject </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'Trial'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@Body </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'Blank Message'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@profile_name </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'SQL Alert'<br/><br/></span></span></p> <br/>But when I execute the same with a period character (.) , it just shows up as &quot;mail queued&quot; but I never recieve it to my mail account.<br/><br/>EXEC<span style="font-size:x-small"> msdb</span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">.</span></span><span style="font-size:x-small">dbo</span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">.</span></span><span style="font-size:x-small">sp_send_dbmail <br/>@recipients</span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'jithin.jerald@xyz.com'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@subject </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'Trial'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@Body </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'Blank Message.'</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> <br/>@profile_name </span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">=</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'SQL Alert'</span></span><br/><br/>Due to this reaason I am not able to send any decimal values either which is what my original intent was. <br/>Any help is much appreciated and apologize in advance if this is a stupid question. <br/><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff"> <p> </p> </span></span></span><span style="font-size:x-small;color:#0000ff"> <p> </p> </span></span> <p><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000"> </span></span></p>Wed, 18 Nov 2009 19:20:48 Z2009-11-24T03:27:52Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/b6659151-e0ba-4a50-b2a0-d6d149545f4chttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/b6659151-e0ba-4a50-b2a0-d6d149545f4cNanousahttp://social.msdn.microsoft.com/Profile/en-US/?user=Nanousasteps to reach the properties of database in sql server enterprise How can i reach the properties of database in sql server enterprise  in order to modify the query time out ?Tue, 17 Nov 2009 08:58:49 Z2009-11-23T03:46:42Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/59bca399-6bb9-478c-b9a6-152620274276http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/59bca399-6bb9-478c-b9a6-152620274276itsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmiHow to define multiple notifications for a single applicationhi <br/><br/>I may be missing some basics but i am bit confused. My requirement is to write a custom formatter which can format my message template which has some placeholders those needs to be replaced with actual data before sending it to reciever. <br/><br/>My application has say 4-5 such message templates , all of these are having different data place holders. now each template actually represents a separate notification. but in IContentFormatter.FormatContent method i get array of hashtable where its nothing to know which hash belongs to what notification?<br/><br/>I mean how can i get appropriate set of data as per my notification? or do i need to write diff formatters for diff notifications?? i dont think so ...<br/><br/>so in short i need to get some data place holders replaced by notification fields data in message before delivering it so my question is where to keep these fileds data? is the notification field is appropriate place if yes how to match it according to specific notification? or do i need to keep single notification class having all data fields collection required by all notifications?<br/><br/>Pelase reply ASAP. <br/><br/>Thanks<br/>Rashmi<br/>Wed, 18 Nov 2009 14:21:21 Z2009-11-18T14:21:21Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/101ffd5d-9e16-4beb-9bb5-b272b367168chttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/101ffd5d-9e16-4beb-9bb5-b272b367168cmcb2401http://social.msdn.microsoft.com/Profile/en-US/?user=mcb2401Server Migration<p>I need to migrate my NS application from one server to another.  The servername/sql instance names are different on the new server.<br/>Server A is the current production server.  Server B is where I want to migrate it to.<br/><br/><br/>I tried doing the following steps:<br/>1.  Created a new NS instance/application on the new server using the ICF/ADF (with the new servername B).<br/>2.  Detach the 2 NS databases that were created. <br/>3.  Move a backup from server A to server B and reattach the 2 databases.<br/>4.  Update the instance using server B as the server/sql instance name in the ICF/ADF.  <br/><br/>The update fails.  No meaningful error is given, just that the update failed.  I am assuming when it compares these to what is stored within the NS instance/application databases, it sees the different names and fails.  Can this be done this way?  I need to keep all of the event/notification/retry data and don't want to have to manually move it all by scripting out inserts.<br/><br/>Thanks,<br/><br/>Mike</p>Wed, 11 Nov 2009 21:19:06 Z2009-11-17T07:08:01Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/ef03ab2f-ea79-46a7-aa0f-5b6798857514http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/ef03ab2f-ea79-46a7-aa0f-5b6798857514David TAIShttp://social.msdn.microsoft.com/Profile/en-US/?user=David%20TAISEvent providers is disabled automaticallyHi There,<br/><br/>I ran into some event provider disable issue days ago.<br/><br/>I am using SQL 2005 with Notification services. We have one application with six event providers. It work fine before but recently,<br/><br/>1) some of the providers get disabled by itself. I enable all of them but they get disabled again later. <br/>2) I find some errors in event log (application). I believe there is some relation between them.<br/>    <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri"><br/> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Source: NotificationServices</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Event ID: 2026</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Description: <strong>The event provider did not return from its Run method within the specified timeout period.</strong></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">EventParameters:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">  Provider Name: Rule6</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">InstanceName: 123</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">ApplicationName: EmailAPP</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Component: Event provider host</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Thread: 13</span></p> <font face=Calibri> <p class=MsoNormal style="margin:0in 0in 0pt"><br/><br/><span style="font-size:small">Source: NotificationServices</span></p> </font></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"> </p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">Event ID: 2026</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small"><strong>Notification Services is terminating the event provider because it returned an error from its Run method.</strong></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">EventParameters:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">  Provider Name: Rule6</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">InstanceName: 123</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">ApplicationName: EmailAPP</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">Component: Event provider host</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri"><span style="font-size:small">Thread: 13<br/><br/><br/></span> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Source: NotificationServices</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Event ID: 2990</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Description: <strong>The SQLProvider event provider failed to submit a batch.</strong></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">EventParameters:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">  Provider Name: Rule6</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">  Event Class Name: Rule6_ev</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Description: Thread was being aborted.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">InstanceName: 123</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">ApplicationName: EmailAPP</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Component: Event collection</span></p> <font face=Calibri> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small">Thread: 18<br/><br/>Please give some advices on how to solve this problem. ( maybe the timeout error is the key? I am not sure)<br/><br/>Regards<br/><br/>David</span></p> </font></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"> </p>Mon, 09 Nov 2009 23:12:24 Z2009-11-12T21:20:53Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/180496bb-0470-4287-a5be-b60ce0779857http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/180496bb-0470-4287-a5be-b60ce0779857saurabh9http://social.msdn.microsoft.com/Profile/en-US/?user=saurabh9How to Auto start Notification Services application?Hi,<br/> Some of my technitians need to reboot my server time to time. Then, I need to manually go an start the Notification Application. How do I make it start automatically when the server starts?Mon, 04 May 2009 12:41:14 Z2009-11-12T14:48:02Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/6c8a5eeb-044a-40fb-a9fe-d71de3350fd2http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/6c8a5eeb-044a-40fb-a9fe-d71de3350fd2mwisconsinhttp://social.msdn.microsoft.com/Profile/en-US/?user=mwisconsinDBMail Error: Protocol is not supported for sending mails.I'm receiving the eror message in the subject line when attempting to send mail via DBMail.  My SMTP server is 127.0.0.1 (the IIS SMTP virtual server), so I don't believe that there is a firewall issue.  In addition, I'm able to Telnet to that server on port 25, and manual send an email successfully, so I don't believe that there's a configuration issue with the SMTP server.<font face=Arial size=2></font> <div><span class=Apple-style-span style="white-space:normal"><br></span></div> <div><span class=Apple-style-span style="white-space:normal">Does anyone have any idea why I would be receiving this error?</span></div> <div><span class=Apple-style-span style="white-space:normal"><br></span></div> <div><span class=Apple-style-span style="white-space:normal">Thank you.</span></div>Tue, 09 Sep 2008 18:35:17 Z2009-11-09T15:45:29Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/465074fc-6027-4c80-b2d7-8dbf1e252ad2http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/465074fc-6027-4c80-b2d7-8dbf1e252ad2Brenda.Bellhttp://social.msdn.microsoft.com/Profile/en-US/?user=Brenda.BellProblem with notification services on DB copied from another hostI'm running SQL Server 2005 on Windows Server Standard 2003 SP2.  Notification services seem to work fine from my web application, but are broken when activated from NUnit unit tests.  I used the information at http://www.simple-talk.com/sql/t-sql-programming/using-and-monitoring-sql-2005-query-notification/ to determine that the subscription is successfully created, but something goes wrong when SqlServer tries to process the notification -- there is no &quot;subscription fired&quot; event -- and DbDataAdapter.Update fails with a SqlException that simply says &quot;A severe error occurred on the current command.  The results, if any, should be discarded&quot;. <div> <div><br/></div> <div>SQL Server's ERRORLOG contains the following:</div> <div><br/></div> <div> <div>2009-11-05 16:55:25.46 spid55      ***Stack Dump being sent to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\SQLDump0101.txt</div> <div>2009-11-05 16:55:25.46 spid55      SqlDumpExceptionHandler: Process 55 generated fatal exception c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server is terminating this process.</div> <div> <div>2009-11-05 16:55:26.02 Server      Error: 17310, Severity: 20, State: 1.</div> <div>2009-11-05 16:55:26.02 Server      A user request from the session with SPID 55 generated a fatal exception. SQL Server is terminating this session. Contact Product Support Services with the dump produced in the log directory.</div> <div><br/></div> </div> </div> <div>To the best of my knowledge, I've done all the things you need to do for a database that was copied from another host (alter authorization, set new_broker, set enable_broker).</div> <div><br/></div> <div><br/></div> </div>Thu, 05 Nov 2009 22:53:35 Z2009-11-05T22:53:36Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/8fd9f221-4fea-4de4-887a-5efb19d6c0c1http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/8fd9f221-4fea-4de4-887a-5efb19d6c0c1mkechunghttp://social.msdn.microsoft.com/Profile/en-US/?user=mkechungDatabase Mail - User not receiving Emails<span style="font-family:Arial;font-size:10pt"> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">I am trying to schedule email notifications containing the maintenance report using SQL 2005 Database Mail.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">Once the maintenance job is completed, only the email addresses within the Database Mail Profile of “CompanyIT” is notified.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">Profile Name: CompanyIT</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">SMTP Accounts</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">Priority 1 – User1 – user1@company.com</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">Priority 2 – User2 – user2@company.com</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">Priority 3 – User3 – user3@company.com</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">When the maintenance job is completed only user1 &amp; user2 receives notification and user3 does not.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">User1, User2 and User3 all have Database Mail accounts.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">I moved user3 to priority 2 without any success</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt">I restarted SQL Server Agent without any success</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Arial;font-size:10pt"> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:small"><span style="font-family:Times New Roman">Any suggestions?</span></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"> </p> </span>Tue, 03 Nov 2009 20:23:32 Z2009-11-03T20:23:33Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/4d3ab644-d148-4bbc-b1b8-2dd0e132c6ebhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/4d3ab644-d148-4bbc-b1b8-2dd0e132c6ebSushant Dhumalhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sushant%20Dhumalms sql server 2005Error on<br/> <br/> Failed to install and configure assemblies C:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\microsoft.sqlserver.notificationservices.dll in the COM+ catalog. Error: -2146233087<br/> Error message: Unknown error 0x80131501<br/> Error description: The Transaction Manager is not available. (Exception from HRESULT: 0x8004D01B)Tue, 03 Nov 2009 13:14:43 Z2009-11-03T13:14:44Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/1c074e7f-67d6-4f71-9ae9-b906d90addd3http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/1c074e7f-67d6-4f71-9ae9-b906d90addd3the_chadhttp://social.msdn.microsoft.com/Profile/en-US/?user=the_chadDatabase Mail SMTP authentication<p>SS 2005 Standard 64bit</p> <p>I configured database mail and I suspect the SMTP authentication credentials are not being sent.  Here are the two scenarios I have tried:</p> <p>1)  Use a local exchange server with basic authentication passing network credentials that have access to use the exchange service.  I have a SS 2000 machine that is configure this way.  Sending email to an address outside the domain fails with </p> <p>&quot;mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2006-08-25T14:02:23). Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 Unable to relay for ....&quot;</p> <p>I can send emails within the domain no matter what the credentials specified in basic authentication are, including invalid users.</p> <p>2)  Use a remote smtp server with basic authentication passing username (email address) and password, which fails with &quot;The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2006-08-25T12:56:22). Exception Message: Cannot send mails to mail server. (Transaction failed. The server response was: 5.7.1 <a title="mailto:myaddress@me.com" href="mailto:myaddress@me.com">myaddress@me.com</a>: Sender address rejected: Access denied).&quot;</p> <p>any idears?</p>Fri, 25 Aug 2006 19:56:10 Z2009-10-28T09:03:03Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/bad2a114-c817-4529-914e-91634b2a30c4http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/bad2a114-c817-4529-914e-91634b2a30c4Ravikant Shiralkarhttp://social.msdn.microsoft.com/Profile/en-US/?user=Ravikant%20ShiralkarSQLServer 2005 Notification Servicehi,<br/>         I had created View in SQL server 2005 databse named Employee which contains the details of employee like: EmpID, EmpName, EmpEmailID etc.<br/> I have requirement where i have to send notification to employee (in certain condition)  using sQL server 2005 Notification Services taking his/her Email ID from EmpEmailID field of Employee view .<br/> <br/> I have no knowledge about SQL Server 2005 notification Services.Please help me , how can i do this.<br/>Mon, 26 Oct 2009 19:18:38 Z2009-10-26T19:18:39Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/e57db864-97c7-4a42-adf5-4673ce9bb934http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/e57db864-97c7-4a42-adf5-4673ce9bb934Sundaram Rhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sundaram%20RError when sending mails thru database mailHi All<br/><br/>I am receiving the following error when i send mails through database mail.<br/><br/>&quot;The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 5 (2009-08-27T17:17:10). Exception Message: Cannot send mails to mail server. (The operation has timed out.)&quot;<br/><br/>Regards<br/>Sundaram RThu, 27 Aug 2009 12:05:33 Z2009-10-21T22:42:14Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/2d18c1cb-ecac-4e38-9833-8279eced1424http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/2d18c1cb-ecac-4e38-9833-8279eced1424mkechunghttp://social.msdn.microsoft.com/Profile/en-US/?user=mkechungUnable to get Email alerts<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I am not sure if I am in the right group.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I am trying to do the following on SQL 2005</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">- Email completion alerts from our maintenance jobs.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">- Email task from SSIS tasks.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I have Database Mail running within Management Studio</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I performed a test Email (Database Mail) and I got it.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I performed a telnet mailserver 25 test and I got it.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I have a receiver connection with the IP address of the SQL server on my mailserver.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I edited a maintenance job and setup an Email alert within the Notifications.</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">I run the job and I don't get Email alert (when the job completes)</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">Any ideas?</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">&nbsp;</span></p> <p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 10pt;">Thanks</span></p>Fri, 16 Oct 2009 20:15:08 Z2009-10-21T01:19:06Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/0eae5318-ab62-4803-88db-46d7d5757032http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/0eae5318-ab62-4803-88db-46d7d5757032Marty Shiffletthttp://social.msdn.microsoft.com/Profile/en-US/?user=Marty%20ShifflettMessage 364 When Running Maintenance PlanI am receiving the following error when my maintenance plan runs:<br/><br/>[364] The Messenger service has not been started - NetSend notifications will not be sent<br/><br/>Now I am sure I can start the messenger service and set it to auto and this error will probably go away.  I would rather not start the messenger service and figure out how I can make it stop another way.  I did a search for this error and came back with a lot of posts but many were confusing.  I am using database mail and I have a profile set up, as well as an operator.  I am not sending any notification in the maintenance plan, but only via the SQL server agent when that job completes.<br/><br/>Any ideas?<br/><br/><br/>Thanks,<br/>Marty ShifflettTue, 22 Sep 2009 02:59:12 Z2009-09-28T13:53:52Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/5f79559d-363a-4031-9d16-476ce7f15066http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/5f79559d-363a-4031-9d16-476ce7f15066Lukasz Pawlowski -- MShttp://social.msdn.microsoft.com/Profile/en-US/?user=Lukasz%20Pawlowski%20%20--%20MSSQL Server 2005 Notification Services Components Package Availability<font face=Arial size=2> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>The SQL Server 2005 Notification Services component package made available in the February 2007 release of the Microsoft Feature Pack for SQL Server 2005 is being updated to include Notification Services components, such as Notification Services server and client components, but will not include Management Studio integration.<span style="">  </span>These updated components are designed to work with SQL Server 2005 and SQL Server 2008 databases. </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>The SQL Server 2005 Notification Services components package update will be released in two phases:</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><b style=""><font size=3><font face="Times New Roman">Phase 1: RC1 </font></font></b></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>The SQL Server 2005 Notification Services component package RC1 is </font><a title="http://www.microsoft.com/downloads/details.aspx?FamilyId=614FFDF3-C608-4BD3-9061-AE37DCC81E2B" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=614FFDF3-C608-4BD3-9061-AE37DCC81E2B"><font face="Times New Roman" color="#800080" size=3>available from the Microsoft Download Center</font></a><font face="Times New Roman" size=3>.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>This release is a pre-release version and is available only for testing.<span style="">  </span>Product support is not available for this pre-release.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font size=3><font face="Times New Roman"><b style="">Phase 2:</b> <b style="">RTW</b> </font></font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>Release to Web (RTW) will be released as part of the Feature Pack update currently scheduled for release as part of SQL Server 2005 Service Pack 3 (SP3).<span style="">  </span>SQL Server 2005 SP3 is targeted for calendar year 2008.<span style="">  </span>The SQL Server 2005 Notification Services component package update will be subject to the SQL Server 2005 Product Support Lifecycle policies.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><b style=""><font size=3><font face="Times New Roman">SQL Server 2005 SP3 Notification Services</font></font></b></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>Starting with SQL Server 2005 SP3, the updated Notification Services will support using either SQL Server 2005 or SQL Server 2008 to host Notification Services Instance and Application databases.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><b style=""><font size=3><font face="Times New Roman">Changes introduced in the Updated Notification Services Components Package</font></font></b></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>We have not changed core functionality of Notification Services in the components package.<span style="">  </span>We made limited interoperability fixes to enable Notification Services command line tools and service components to work correctly when using a SQL Server 2008 Database Engine to host the Notification Services Instance and Application databases.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font size=3><font face="Times New Roman">No feature additions were made.<span style="">  </span></font></font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><b style=""><font size=3><font face="Times New Roman">Phase 1: RC1 - Deploying SQL Server 2005 Notification Services Components Package</font></font></b></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>The RC1 package can be installed on the same computer as an existing SQL Server 2005 Notification Services deployment. The existing deployment will automatically use the new service components installed by the RC1 package.<span style="">  </span>Any Notification Services instances running on the computer should be stopped prior to installing the RC1package. </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>Before installing the RC1 Package, you will need to install a SQL Server 2005 Cumulative Update to enable Notification Services to connect to a SQL Server 2008 database server.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>For the purposes of testing the RC1 package, the following prerequisites are needed:</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoListParagraphCxSpFirst style="margin:0in 0in 0pt 0.5in;text-indent:-0.25in"><font face="Times New Roman"><span style=""><font size=3>1)</font><span style="font:7pt 'Times New Roman'">      </span></span><font size=3>SQL Server 2005 Notification Services </font></font></p> <p class=MsoListParagraphCxSpMiddle style="margin:0in 0in 0pt 0.5in;text-indent:-0.25in"><font face="Times New Roman"><span style=""><font size=3>2)</font><span style="font:7pt 'Times New Roman'">      </span></span><font size=3>SQL Server 2005 SP2</font></font></p> <p class=MsoListParagraphCxSpLast style="margin:0in 0in 0pt 0.5in;text-indent:-0.25in"><font face="Times New Roman"><span style=""><font size=3>3)</font><span style="font:7pt 'Times New Roman'">      </span></span><font size=3>Cumulative update package 9 for SQL Server 2005 Service Pack 2, or later</font></font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>If you do not have SQL Server 2005 installed and wish to test the RC1 Package, an option is to install the Evaluation Edition of SQL Server 2005 for the purposes of testing RC1. <span style=""> </span>Please note that the Evaluation Edition does have a limited license term (please see the Evaluation Edition license terms for details).</font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt"><b style=""><font size=3><font face="Times New Roman">The Future of Notification Services</font></font></b></p> <p class=MsoNormal style="margin:0in 0in 0pt"><font face="Times New Roman" size=3>SQL Server 2005 is the last planned release of Notification Services. Microsoft believes “alerting” scenarios are valuable to our customers and we are looking at ways to include them in future product offerings.</font></font></p>Tue, 09 Sep 2008 23:07:06 Z2009-09-23T22:48:05Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/21ff06b7-1150-4a2e-9563-4483b390182dhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/21ff06b7-1150-4a2e-9563-4483b390182dsaba khanhttp://social.msdn.microsoft.com/Profile/en-US/?user=saba%20khanHow is UtcOffset stored in NSTimeZones table?Hi!!<br/><br/>I wanted to know what is the unit of UtcOffset which are stored in the <strong>NSTimeZones</strong> table?<br/><br/>I want to convert some other timezones to UTC say for example: <br/><br/>I want to convert India Time to UTC but I am not sure that where should I add the UTCoffset value to other time zone.. for a while I assumed that in millisecond but it is giving me the wrong conversion result:<br/><br/>Like I queried the sql browser in this way: <br/><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff">select </span></span></span></span><span style="font-size:x-small;color:#ff00ff"><span style="font-size:x-small;color:#ff00ff">DateADD</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">(</span></span><span style="font-size:x-small">millisecond</span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> 5940000</span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">,</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff00ff"><span style="font-size:x-small;color:#ff00ff">GetDate</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">()) <span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'LocalToUTC'</span></span>,</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#ff00ff"><span style="font-size:x-small;color:#ff00ff">GetUTCDate</span></span><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080">() <span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000">'UTC'<span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#808080"><span style="font-size:x-small;color:#ff0000"><span style="font-size:x-small;color:#ff0000"> </span></span></span></span></span></span></span></span> <br/><br/>where <span style="font-size:x-small">5940000 is the value for UtcOffset columne stored for India Time Timezone in <strong>NSTimeZones</strong> and my server timezone has set to India time so GetDate() will return me the datetime value in Indian Time and I am adding its UtcOffset to get it converted into UTC and so should get matched up with GetUTCDate() and show the same result. but it is showing me different .. see for ex<br/><br/>LocalToUTC = 2009-09-04 13:01:30.867<br/>UTC = 2009-09-04 05:52:30.867<br/><br/>I am using this data in my application and we are giving the user to select their choice of timezone from drop-down(contain timezones from <strong>NSTimeZones table</strong>) irrespective of their local time zone set into the machine. And then we have to convert the selected timezone date time to UTC to save it in database. That's the reason i need to handle this scenario in my stored procedure while inserting it ... <br/><br/>Please help me and please try to treat this as an urgent.<br/><br/>Thank a lot for reading it!!<br/>Saba<br/><a href="mailto:fksaba@gmail.com">fksaba@gmail.com</a></span>Fri, 04 Sep 2009 05:58:07 Z2009-09-10T03:40:08Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/cab7ef4f-25ac-434d-9cc2-40597d2049a0http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/cab7ef4f-25ac-434d-9cc2-40597d2049a0Maverickcoderhttp://social.msdn.microsoft.com/Profile/en-US/?user=MaverickcoderEvent/trigger/notification from the sql server 2005 to C# applicationHi Experts, <div><br/></div> <div>I am new to sql stuff. Please if you could guide me, I have a table that gets the data about status of machines and its connected devices, continousouly (large chunk of data).  All the data is in the table in binary form. Suppose if device is active its bit is set as 1 otherwise 0.</div> <div> <div><br/></div> <div>My problem is when 1 bit data is entered in the table for a particular device, i.e device is active, c# application should tell/notifies the user, device is active or vice versa.</div> <div><br/></div> <div>So I am thinking to put trigger on my table that check after insert sql query if the particular bit is entered 1. If yes then tell the user. But how C# application will come to know the result of the trigger operation on table? Any code example would be helpful.<br/><br/></div> </div> <div>Thanks n regards,</div><hr class="sig">MaverickMon, 31 Aug 2009 16:40:55 Z2009-09-07T02:43:27Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/1e67d58c-8b6c-47a8-a8af-dea64998084ahttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/1e67d58c-8b6c-47a8-a8af-dea64998084aBHARAT JARIWALAhttp://social.msdn.microsoft.com/Profile/en-US/?user=BHARAT%20JARIWALASubscription management page not opening in Remote Database Server Deployment modelHi All,<br/><br/>We have used SQL NS Remote Database Server Deployment model and has three different servers for each DB, Notification WinService and Subscription Management page. However, Notification WinService working fine but Subscription Management page (ASP.NET) throwing exception as below:<br/><br/><span style="color:#ff0000">[NSException: Notification Services failed to get the metadata for the specified instance.<br/>Instance Name: NSInstance<br/>SqlServerError:<br/>  Source: .Net SqlClient Data Provider<br/>  Number: 18452<br/>  State: 1<br/>  Class: 14<br/>  Server: DBSERVER\DB<br/>  Message: Login failed for user ''. The user is not associated with a trusted SQL Server connection.<br/>  Procedure: </span><br/>}<br/><br/>We have registered NS instance on Subscription Management machine as well as on Notification WinService machine also.<br/><br/>Please help<br/><br/>Regards,<br/>Bharat<br/><br/><br/><br/><br/>Mon, 24 Aug 2009 06:54:40 Z2009-08-28T06:14:21Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/c1d1d057-375c-418c-b2d9-5444527d7ecbhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/c1d1d057-375c-418c-b2d9-5444527d7ecbravirajaryanhttp://social.msdn.microsoft.com/Profile/en-US/?user=ravirajaryanHow to setup a mail notification<p>Hi All,</p> <p>I have schedule some job in sql server 2000 .Now i want to set up an email notification under scheduled jobs.</p> <p>Kindly let me know in detail steps starting from first step that how can i configure email notification. </p>Sun, 23 Aug 2009 06:38:17 Z2009-08-27T09:15:17Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/12f59bdb-617c-4264-9ee9-50a7af6b78b0http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/12f59bdb-617c-4264-9ee9-50a7af6b78b0Trevor Brookshttp://social.msdn.microsoft.com/Profile/en-US/?user=Trevor%20BrooksOdd Notification RequirementHello,<br/><br/>Scenario: SERVER1 sends out an event that it has gone down (&quot;Server Down&quot; event), the subscriber only wants to receive a notification if SERVER1 doesn't send out a &quot;Server Up&quot; event within a certain amount of time, we'll just say 5 minutes. <br/><br/>How would you do this in SQL-NS?<br/><br/>See my <a title="previous post" href="http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/bf9b6ce4-d870-4142-ac57-cc5ac8ad0652">previous post</a> if you're interested in seeing the direction I've been heading with this.<br/><br/>I could really use some ideas.<br/><br/>Regards,<br/>TrevorWed, 12 Aug 2009 23:28:24 Z2009-08-20T03:06:22Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a83cda7e-d37f-4d2d-a314-f49dce3ed5b8http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a83cda7e-d37f-4d2d-a314-f49dce3ed5b8rakeshkumishrahttp://social.msdn.microsoft.com/Profile/en-US/?user=rakeshkumishraVisual Studio (BI Tools - SSIS, SSRS) 2008 with database SQL Server 2005Hi,<br/><br/>We developed the BI application SSIS 2005 and SSRS 2005 with SQL server 2005. During production move plan to use SSIS and SSRS 2008 with SQL Server 2005 database at backend. Please let me know with this confiugration if any known issues are there or any specific measures need to be taken up.<br/><br/>Thanks in davance for quick help.<br/>-Raks<br/>Wed, 12 Aug 2009 11:26:30 Z2009-08-20T03:08:11Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/bf9b6ce4-d870-4142-ac57-cc5ac8ad0652http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/bf9b6ce4-d870-4142-ac57-cc5ac8ad0652Trevor Brookshttp://social.msdn.microsoft.com/Profile/en-US/?user=Trevor%20BrooksNSExecuteRuleFiring returns Invalid Column NameHello,<br/><br/>I'm getting the following errors when SQL-NS instance fires my rule:<br/><br/> <pre>Description: The running of the rule failed. Please check the rule. EventParameters: Application Name: Messages Quantum ID: 30040 Rule Firing ID: 21218 Rule Name: MessageEventRule Notification Throttle: 1000 Event Class ID: 1 Subscription Class ID: 1 Rule ID: 2 Rule Action: EXEC stp_Insert_Message_Alerts Stored Procedure Name: [dbo].[NSFire2] SqlServerError: Error Number: 0 Source: .Net SqlClient Data Provider Number: 207 State: 1 Class: 16 Server: NOCMON-DEV Message: Invalid column name 'Date'. Procedure: Line Number: 16 Error Number: 1 Source: .Net SqlClient Data Provider Number: 207 State: 1 Class: 16 Server: NOCMON-DEV Message: Invalid column name 'Date'. Procedure: Line Number: 16 Description: Invalid column name 'Date'. Invalid column name 'Date'. InstanceName: NOCMon ApplicationName: Messages Component: Generator Thread: 4 For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.</pre> My ADF looks like this:<br/><br/> <pre lang=x-xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; &lt;Application xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns=&quot;http://www.microsoft.com/MicrosoftNotificationServices/ApplicationDefinitionFileSchema&quot;&gt; &lt;!-- Version --&gt; &lt;!-- Database Definition --&gt; &lt;!-- Event Classes --&gt; &lt;EventClasses&gt; &lt;EventClass&gt; &lt;EventClassName&gt;NOCMonMessageEvents&lt;/EventClassName&gt; &lt;Schema&gt; &lt;Field&gt; &lt;FieldName&gt;SourceID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorCategoryID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Date&lt;/FieldName&gt; &lt;FieldType&gt;datetime&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Station&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Message&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;StatusID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nUser&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nSubject&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;/Schema&gt; &lt;IndexSqlSchema&gt; &lt;SqlStatement&gt; CREATE INDEX myIndex ON NOCMonMessageEvents ( SourceID ); &lt;/SqlStatement&gt; &lt;/IndexSqlSchema&gt; &lt;Chronicles&gt; &lt;Chronicle&gt; &lt;ChronicleName&gt;NOCMonMessageEventsChronicle&lt;/ChronicleName&gt; &lt;SqlSchema&gt; &lt;SqlStatement&gt; IF EXISTS(SELECT name FROM dbo.sysobjects WHERE name = 'NOCMonMessageEventsChronicle') DROP TABLE dbo.NOCMonMessageEventsChronicle CREATE TABLE NOCMonMessageEventsChronicle ( [SourceID] int, [ErrorCategoryID] int, [Date] DateTime, [Station] nvarchar(50), [Message] nvarchar(max), [StatusID] int, [nUser] nvarchar(50), [nSubject] nvarchar(max)) &lt;/SqlStatement&gt; &lt;/SqlSchema&gt; &lt;/Chronicle&gt; &lt;/Chronicles&gt; &lt;ChronicleRule&gt; &lt;RuleName&gt;NOCMonMessageEventsChronicleRule&lt;/RuleName&gt; &lt;Action&gt; INSERT INTO NOCMonMessageEventsChronicle (SourceID, ErrorCategoryID, Date, Station, Message, StatusID, [nUser], nSubject) SELECT E.SourceID, E.ErrorCategoryID, E.Date, E.Station, E.Message, E.StatusID, E.[nUser], E.nSubject FROM NOCMonMessageEvents E &lt;/Action&gt; &lt;ActionTimeout&gt;PT10M&lt;/ActionTimeout&gt; &lt;/ChronicleRule&gt; &lt;/EventClass&gt; &lt;/EventClasses&gt; &lt;!-- Subscription Classes --&gt; &lt;SubscriptionClasses&gt; &lt;SubscriptionClass&gt; &lt;SubscriptionClassName&gt;NOCMonMessageEventSubscription&lt;/SubscriptionClassName&gt; &lt;Schema&gt; &lt;Field&gt; &lt;FieldName&gt;DeviceName&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(255)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SubscriberLocale&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(10)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SourceID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorCategoryID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Station&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Description&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Threshold&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeOfDayRangeBegin&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeOfDayRangeEnd&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeBuffer&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;AlarmGrouping&lt;/FieldName&gt; &lt;FieldType&gt;bit&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;GroupingTime&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ElementContainer&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;AcknowledgeNotification&lt;/FieldName&gt; &lt;FieldType&gt;bit&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SecondaryNotification&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TertiaryNotification&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;/Schema&gt; &lt;EventRules&gt; &lt;EventRule&gt; &lt;RuleName&gt;MessageEventRule&lt;/RuleName&gt; &lt;EventClassName&gt;NOCMonMessageEvents&lt;/EventClassName&gt; &lt;ConditionAction&gt; &lt;SqlLogin&gt;NSRulesEvaluator&lt;/SqlLogin&gt; &lt;SqlUser&gt;NSRulesEvaluator&lt;/SqlUser&gt; &lt;InputName&gt;NOCMonMessageEvents&lt;/InputName&gt; &lt;SqlExpression&gt; EXEC stp_Insert_Message_Alerts &lt;/SqlExpression&gt; &lt;/ConditionAction&gt; &lt;/EventRule&gt; &lt;/EventRules&gt; &lt;/SubscriptionClass&gt; &lt;SubscriptionClass&gt; &lt;SubscriptionClassName&gt;ScheduledSubscriptions&lt;/SubscriptionClassName&gt; &lt;Schema&gt; &lt;Field&gt; &lt;FieldName&gt;DeviceName&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(255)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SubscriberLocale&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(10)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SourceID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorCategoryID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Station&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Description&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Threshold&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeOfDayRangeBegin&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeOfDayRangeEnd&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TimeBuffer&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;AlarmGrouping&lt;/FieldName&gt; &lt;FieldType&gt;bit&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;GroupingTime&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ElementContainer&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;AcknowledgeNotification&lt;/FieldName&gt; &lt;FieldType&gt;bit&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;SecondaryNotification&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;TertiaryNotification&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(MAX)&lt;/FieldType&gt; &lt;/Field&gt; &lt;/Schema&gt; &lt;ScheduledRules&gt; &lt;ScheduledRule&gt; &lt;RuleName&gt;ScheduledSubscriptionsRule&lt;/RuleName&gt; &lt;ConditionAction&gt; &lt;SqlLogin&gt;NSRulesEvaluator&lt;/SqlLogin&gt; &lt;SqlUser&gt;NSRulesEvaluator&lt;/SqlUser&gt; &lt;InputName&gt;NOCMonMessageEventsChronicle&lt;/InputName&gt; &lt;SqlExpression&gt; INSERT INTO ScheduledNotifications( SubscriberId, DeviceName, SubscriberLocale, Description, SourceID, ErrorCategoryID, Date, Station, Message, StatusID, [nUser], nSubject) SELECT r.[Subscription.SubscriberId], r.[Subscription.DeviceName], r.[Subscription.SubscriberLocale], r.[Subscription.Description], r.[Input.SourceID], r.[Input.ErrorCategoryID], r.[Input.Date], r.[Input.Station], r.[Input.Message], r.[Input.StatusID], r.[Input.nUser], r.[Input.nSubject] FROM ScheduledSubscriptionsRule r; &lt;/SqlExpression&gt; &lt;/ConditionAction&gt; &lt;/ScheduledRule&gt; &lt;/ScheduledRules&gt; &lt;/SubscriptionClass&gt; &lt;/SubscriptionClasses&gt; &lt;!-- Notification Classes --&gt; &lt;NotificationClasses&gt; &lt;NotificationClass&gt; &lt;NotificationClassName&gt; MessageAlerts &lt;/NotificationClassName&gt; &lt;Schema&gt; &lt;Fields&gt; &lt;Field&gt; &lt;FieldName&gt;SourceID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Source&lt;/FieldName&gt; &lt;FieldType&gt;varchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorCategoryID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorText&lt;/FieldName&gt; &lt;FieldType&gt;varchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Date&lt;/FieldName&gt; &lt;FieldType&gt;datetime&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Station&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Message&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;StatusID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Status&lt;/FieldName&gt; &lt;FieldType&gt;varchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nUser&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nSubject&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Description&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;/Fields&gt; &lt;/Schema&gt; &lt;ContentFormatter&gt; &lt;ClassName&gt;XsltFormatter&lt;/ClassName&gt; &lt;Arguments&gt; &lt;Argument&gt; &lt;Name&gt;XsltBaseDirectoryPath&lt;/Name&gt; &lt;Value&gt;%_AppPath_%&lt;/Value&gt; &lt;/Argument&gt; &lt;Argument&gt; &lt;Name&gt;XsltFileName&lt;/Name&gt; &lt;Value&gt;MessageTransform.xslt&lt;/Value&gt; &lt;/Argument&gt; &lt;/Arguments&gt; &lt;/ContentFormatter&gt; &lt;Protocols&gt; &lt;Protocol&gt; &lt;ProtocolName&gt;SMTP&lt;/ProtocolName&gt; &lt;Fields&gt; &lt;Field&gt; &lt;FieldName&gt;Subject&lt;/FieldName&gt; &lt;SqlExpression&gt;'NOCMon Notification: '+CONVERT (NVARCHAR(30), GETDATE())&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;BodyFormat&lt;/FieldName&gt; &lt;SqlExpression&gt;'html'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;From&lt;/FieldName&gt; &lt;SqlExpression&gt;'noc@captelmail.com'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Priority&lt;/FieldName&gt; &lt;SqlExpression&gt;'Normal'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;To&lt;/FieldName&gt; &lt;SqlExpression&gt;DeviceAddress&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;/Fields&gt; &lt;/Protocol&gt; &lt;/Protocols&gt; &lt;/NotificationClass&gt; &lt;NotificationClass&gt; &lt;NotificationClassName&gt;ScheduledNotifications&lt;/NotificationClassName&gt; &lt;Schema&gt; &lt;Fields&gt; &lt;Field&gt; &lt;FieldName&gt;SourceID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;ErrorCategoryID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Date&lt;/FieldName&gt; &lt;FieldType&gt;datetime&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Station&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Message&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;StatusID&lt;/FieldName&gt; &lt;FieldType&gt;int&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nUser&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(50)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;nSubject&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Description&lt;/FieldName&gt; &lt;FieldType&gt;nvarchar(max)&lt;/FieldType&gt; &lt;/Field&gt; &lt;/Fields&gt; &lt;/Schema&gt; &lt;ContentFormatter&gt; &lt;ClassName&gt;XsltFormatter&lt;/ClassName&gt; &lt;Arguments&gt; &lt;Argument&gt; &lt;Name&gt;XsltBaseDirectoryPath&lt;/Name&gt; &lt;Value&gt;%_AppPath_%&lt;/Value&gt; &lt;/Argument&gt; &lt;Argument&gt; &lt;Name&gt;XsltFileName&lt;/Name&gt; &lt;Value&gt;MessageTransform.xslt&lt;/Value&gt; &lt;/Argument&gt; &lt;/Arguments&gt; &lt;/ContentFormatter&gt; &lt;DigestDelivery&gt;true&lt;/DigestDelivery&gt; &lt;Protocols&gt; &lt;Protocol&gt; &lt;ProtocolName&gt;SMTP&lt;/ProtocolName&gt; &lt;Fields&gt; &lt;Field&gt; &lt;FieldName&gt;Subject&lt;/FieldName&gt; &lt;SqlExpression&gt;'NOCMon Notification: '+CONVERT (NVARCHAR(30), GETDATE())&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;BodyFormat&lt;/FieldName&gt; &lt;SqlExpression&gt;'html'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;From&lt;/FieldName&gt; &lt;SqlExpression&gt;'noc@captelmail.com'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;Priority&lt;/FieldName&gt; &lt;SqlExpression&gt;'Normal'&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;Field&gt; &lt;FieldName&gt;To&lt;/FieldName&gt; &lt;SqlExpression&gt;DeviceAddress&lt;/SqlExpression&gt; &lt;/Field&gt; &lt;/Fields&gt; &lt;/Protocol&gt; &lt;/Protocols&gt; &lt;ExpirationAge&gt;PT2H&lt;/ExpirationAge&gt; &lt;/NotificationClass&gt; &lt;/NotificationClasses&gt; &lt;!-- Event Providers --&gt; &lt;Providers&gt; &lt;NonHostedProvider&gt; &lt;ProviderName&gt;MessageSPEventProvider&lt;/ProviderName&gt; &lt;/NonHostedProvider&gt; &lt;NonHostedProvider&gt; &lt;ProviderName&gt;SQLTriggerEventProvider&lt;/ProviderName&gt; &lt;/NonHostedProvider&gt; &lt;/Providers&gt; &lt;!-- Generator --&gt; &lt;Generator&gt; &lt;SystemName&gt;%_NSServer_%&lt;/SystemName&gt; &lt;/Generator&gt; &lt;!-- Distributors --&gt; &lt;Distributors&gt; &lt;Distributor&gt; &lt;SystemName&gt;%_NSServer_%&lt;/SystemName&gt; &lt;QuantumDuration&gt;PT15S&lt;/QuantumDuration&gt; &lt;/Distributor&gt; &lt;/Distributors&gt; &lt;!-- ApplicationExecutionSettings --&gt; &lt;ApplicationExecutionSettings&gt; &lt;QuantumDuration&gt;PT15S&lt;/QuantumDuration&gt; &lt;DistributorLogging&gt; &lt;LogBeforeDeliveryAttempts&gt;false&lt;/LogBeforeDeliveryAttempts&gt; &lt;LogStatusInfo&gt;false&lt;/LogStatusInfo&gt; &lt;LogNotificationText&gt;false&lt;/LogNotificationText&gt; &lt;/DistributorLogging&gt; &lt;PerformanceQueryInterval&gt;PT5S&lt;/PerformanceQueryInterval&gt; &lt;SubscriptionQuantumLimit&gt;1&lt;/SubscriptionQuantumLimit&gt; &lt;ChronicleQuantumLimit&gt;1&lt;/ChronicleQuantumLimit&gt; &lt;Vacuum&gt; &lt;RetentionAge&gt;P1D&lt;/RetentionAge&gt; &lt;VacuumSchedule&gt; &lt;Schedule&gt; &lt;StartTime&gt;23:00:00&lt;/StartTime&gt; &lt;Duration&gt;P0DT02H00M00S&lt;/Duration&gt; &lt;/Schedule&gt; &lt;/VacuumSchedule&gt; &lt;/Vacuum&gt; &lt;/ApplicationExecutionSettings&gt; &lt;/Application&gt; </pre> <br/>The NOCMonMessageEvents Condition Action stored procedure looks like this:<br/><br/> <pre lang=x-sql>ALTER PROCEDURE [dbo].[stp_Insert_Message_Alerts] AS DECLARE @matchID int BEGIN SET NOCOUNT ON; INSERT INTO MessageAlerts(SubscriberId, DeviceName, SubscriberLocale, [Description], SourceID, Source, ErrorCategoryID, ErrorText, Date, Station, [Message], StatusID, [Status], nUser, nSubject) SELECT r.[Subscription.SubscriberId], r.[Subscription.DeviceName], r.[Subscription.SubscriberLocale], r.[Subscription.Description], r.[Input.SourceID], SRC.SourceName, r.[Input.ErrorCategoryID], ERR.ErrText, r.[Input.Date], r.[Input.Station], r.[Input.Message], r.[Input.StatusID], STAT.[LongDesc], r.[Input.nUser], r.[Input.nSubject] FROM MessageEventRule r INNER JOIN tblErrCategory_Sup ERR ON ERR.ErrorCategoryID = r.[Input.ErrorCategoryID] INNER JOIN tblSource_Sup SRC ON SRC.SourceID = r.[Input.SourceID] INNER JOIN tblStatus_Sup STAT ON STAT.StatusID = r.[Input.StatusID] SELECT @matchID = ErrorCategoryID FROM MessageEventRule MER INNER JOIN ErrorMatchClearings EMATCH ON EMATCH.errorCategoryID = MER.[Input.ErrorCategoryID] IF @matchID IS NOT NULL BEGIN INSERT INTO ErrorMatches(SubscriberId, DeviceName, SubscriberLocale, [Description], SourceID, ErrorCategoryID, Date, Station, [Message], StatusID, nUser, nSubject) SELECT r.[Subscription.SubscriberId], r.[Subscription.DeviceName], r.[Subscription.SubscriberLocale], r.[Subscription.Description], r.[Input.SourceID], r.[Input.ErrorCategoryID], r.[Input.Date], r.[Input.Station], r.[Input.Message], r.[Input.StatusID], r.[Input.nUser], r.[Input.nSubject] FROM MessageEventRule r WHERE r.[Input.ErrorCategoryID] = @matchID END END</pre> The vb.net I am using to create the subscription (and I suspect this is where I'm doing something wrong?):<br/><br/> <pre lang=x-vbnet> Private Function GetSubscriptionData(ByRef e As Telerik.Web.UI.GridCommandEventArgs) As EventSubscription Dim editedItem As GridEditableItem = CType(e.Item, GridEditableItem) Dim s As New EventSubscription(EventSubscription.UserName) Dim svr As sqlsmo.Server = New sqlsmo.Server(&quot;MyServer&quot;) svr.ConnectionContext.LoginSecure = False svr.ConnectionContext.Login = &quot;mylogin&quot; svr.ConnectionContext.Password = &quot;mypassword&quot; Dim nocmonDB As sqlsmo.Database = svr.Databases(&quot;NOCMonMessages&quot;) Dim errorMatchClearings As sqlsmo.Table = nocmonDB.Tables(&quot;ErrorMatchClearings&quot;) Dim errorMatches As sqlsmo.Table = nocmonDB.Tables(&quot;ErrorMatches&quot;) Dim eventView As sqlsmo.View = nocmonDB.Views(&quot;NOCMonMessageEvents&quot;) Dim sourceDropDown As DropDownList = e.Item.FindControl(&quot;sourceDropdown&quot;) Dim errorDropDown As DropDownList = e.Item.FindControl(&quot;errorDropdown&quot;) Dim stationDropDown As DropDownList = e.Item.FindControl(&quot;stationDropdown&quot;) Dim txtDescription As TextBox = e.Item.FindControl(&quot;txtDescription&quot;) Dim txtThreshold As TextBox = e.Item.FindControl(&quot;txtThreshold&quot;) Dim txtTimeOfDayRangeBegin As TextBox = e.Item.FindControl(&quot;txtTimeOfDayRangeBegin&quot;) Dim txtTimeOfDayRangeEnd As TextBox = e.Item.FindControl(&quot;txtTimeOfDayRangeEnd&quot;) Dim txtTimeBuffer As TextBox = e.Item.FindControl(&quot;txtTimeBuffer&quot;) Dim txtGroupingTime As TextBox = e.Item.FindControl(&quot;txtGroupingTime&quot;) Dim txtElementContainer As TextBox = e.Item.FindControl(&quot;txtElementContainer&quot;) Dim txtSecondaryNotification As TextBox = e.Item.FindControl(&quot;txtSecondaryNotification&quot;) Dim txtTertiaryNotification As TextBox = e.Item.FindControl(&quot;txtTertiaryNotification&quot;) Dim strSource As String = sourceDropDown.SelectedItem.Value Dim strErrorText As String = errorDropDown.SelectedItem.Value Dim strStation As String = stationDropDown.SelectedItem.Text s.Station = strStation s.ErrorCategoryID = strErrorText s.SourceID = strSource Dim sourceOperator As nsr.SimpleOperator = New nsr.SimpleOperator Dim errorOperator As nsr.SimpleOperator = New nsr.SimpleOperator Dim stationOperator As nsr.SimpleOperator = New nsr.SimpleOperator If Trim(strSource) = &quot;ANY&quot; Then strSource = &quot;&quot; sourceOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.NotEquals Else sourceOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.Equals End If If Trim(strErrorText) = &quot;67&quot; Then strErrorText = &quot;&quot; errorOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.NotEquals Else errorOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.Equals End If If Trim(strStation) = &quot;ANY&quot; Then strStation = &quot;&quot; stationOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.NotEquals Else stationOperator = Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.Equals End If <br/><br/><br/> If txtTimeBuffer.Text &lt;&gt; &quot;00:00:00&quot; Then Dim clearingFilter As nsr.FilterRule = New nsr.FilterRule( _ New nsr.TableInputType(nocmonDB.Tables(&quot;ErrorMatches&quot;)), _ New nsr.FilterStatement( _ New nsr.SimpleLeafCondition( _ New nsr.FieldValue(&quot;Date&quot;), _ Microsoft.SqlServer.NotificationServices.Rules.SimpleOperator.LessThan, _ New nsr.FunctionValue(nocmonDB.UserDefinedFunctions(&quot;TIMEBUFFER&quot;, &quot;dbo&quot;), _ txtTimeBuffer.Text, New nsr.FieldValue(&quot;Date&quot;))), _ Microsoft.SqlServer.NotificationServices.Rules.FilterAction.Exclude)) s.UserCondition = New nsr.AndCondition( _ New nsr.SimpleLeafCondition( _ New nsr.FieldValue(&quot;SourceID&quot;), _ sourceOperator, strSource), _ New nsr.SimpleLeafCondition( _ New nsr.FieldValue(&quot;ErrorCategoryID&quot;), _ errorOperator, strErrorText), _ New nsr.SimpleLeafCondition( _ New nsr.FieldValue(&quot;Station&quot;), _ stationOperator, strStation), _ New nsr.LinkLeafCondition( _ Microsoft.SqlServer.NotificationServices.Rules.LinkLeafOperator.Any, _ clearingFilter, _ New nsr.JoinClause( _ eventView.Columns(&quot;ErrorCategoryID&quot;), _ errorMatches.Columns(&quot;ErrorCategoryID&quot;)), _ New nsr.JoinClause( _ errorMatches.Columns(&quot;ErrorCategoryID&quot;), _ errorMatchClearings.Columns(&quot;clearingErrorCategoryID&quot;)))) End If s.DeviceName = &quot;myDevice&quot; s.Locale = &quot;en-us&quot; s.Description = txtDescription.Text s.Threshold = txtThreshold.Text s.TimeOfDayRangeBegin = txtTimeOfDayRangeBegin.Text s.TimeOfDayRangeEnd = txtTimeOfDayRangeEnd.Text s.TimeBuffer = txtTimeBuffer.Text s.GroupingTime = txtGroupingTime.Text s.ElementContainer = txtElementContainer.Text s.SecondaryNotification = txtSecondaryNotification.Text s.TertiaryNotification = txtTertiaryNotification.Text Return s End Function</pre> Note that where I am creating the clearingFilter, I specify ErrorMatches as the input table, yes ErrorMatches contains a field called Date, I tried changing the name of the field to fooDate, still I got the error, but updated to say could not find 'fooDate'.<br/><br/><br/>When I use the debugging stored procedures and fire the rule I get:<br/><br/> <pre>Msg 207, Level 16, State 1, Line 16 Invalid column name 'Date'. Msg 207, Level 16, State 1, Line 16 Invalid column name 'Date'.</pre> Here is the XML for the Condition:<br/><br/> <pre lang=x-xml>&lt;NSRulesObject xmlns=&quot;http://www.microsoft.com/MicrosoftNotificationServices/RulesSchema&quot;&gt; &lt;Condition&gt; &lt;And&gt; &lt;SimpleLeaf Operator=&quot;=&quot;&gt; &lt;Left&gt; &lt;Field Name=&quot;SourceID&quot; /&gt; &lt;/Left&gt; &lt;Right&gt; &lt;Constant Type=&quot;System.String&quot; Value=&quot;2&quot; /&gt; &lt;/Right&gt; &lt;/SimpleLeaf&gt; &lt;SimpleLeaf Operator=&quot;=&quot;&gt; &lt;Left&gt; &lt;Field Name=&quot;ErrorCategoryID&quot; /&gt; &lt;/Left&gt; &lt;Right&gt; &lt;Constant Type=&quot;System.String&quot; Value=&quot;51&quot; /&gt; &lt;/Right&gt; &lt;/SimpleLeaf&gt; &lt;SimpleLeaf Operator=&quot;&amp;lt;&amp;gt;&quot;&gt; &lt;Left&gt; &lt;Field Name=&quot;Station&quot; /&gt; &lt;/Left&gt; &lt;Right&gt; &lt;Constant Type=&quot;System.String&quot; Value=&quot;&quot; /&gt; &lt;/Right&gt; &lt;/SimpleLeaf&gt; &lt;LinkLeaf Operator=&quot;Any&quot;&gt; &lt;FilterRule&gt; &lt;InputType&gt; &lt;Table Database=&quot;NOCMonMessages&quot; Schema=&quot;dbo&quot; Name=&quot;ErrorMatches&quot; /&gt; &lt;/InputType&gt; &lt;Statements&gt; &lt;FilterStatement Action=&quot;Exclude&quot;&gt; &lt;Condition&gt; &lt;SimpleLeaf Operator=&quot;&amp;lt;&quot;&gt; &lt;Left&gt; &lt;Field Name=&quot;Date&quot; /&gt; &lt;/Left&gt; &lt;Right&gt; &lt;Function Db=&quot;NOCMonMessages&quot; Schema=&quot;dbo&quot; Name=&quot;TIMEBUFFER&quot;&gt; &lt;Parameters&gt; &lt;Constant Type=&quot;System.String&quot; Value=&quot;5&quot; /&gt; &lt;Field Name=&quot;Date&quot; /&gt; &lt;/Parameters&gt; &lt;/Function&gt; &lt;/Right&gt; &lt;/SimpleLeaf&gt; &lt;/Condition&gt; &lt;/FilterStatement&gt; &lt;/Statements&gt; &lt;/FilterRule&gt; &lt;LinkChain&gt; &lt;JoinClause SourceDb=&quot;NOCMonMessages&quot; SourceSchema=&quot;dbo&quot; SourceView=&quot;NOCMonMessageEvents&quot; SourceColumn=&quot;ErrorCategoryID&quot; TargetDb=&quot;NOCMonMessages&quot; TargetSchema=&quot;dbo&quot; TargetView=&quot;ErrorMatches&quot; TargetColumn=&quot;ErrorCategoryID&quot; /&gt; &lt;JoinClause SourceDb=&quot;NOCMonMessages&quot; SourceSchema=&quot;dbo&quot; SourceView=&quot;ErrorMatches&quot; SourceColumn=&quot;ErrorCategoryID&quot; TargetDb=&quot;NOCMonMessages&quot; TargetSchema=&quot;dbo&quot; TargetView=&quot;ErrorMatchClearings&quot; TargetColumn=&quot;clearingErrorCategoryID&quot; /&gt; &lt;/LinkChain&gt; &lt;/LinkLeaf&gt; &lt;/And&gt; &lt;/Condition&gt; &lt;/NSRulesObject&gt;</pre> You can see the Date field referenced in the FilterRule.<br/><br/>The subscription saves just fine, so this all really boils down to the rule firing error.<br/><br/>I hope someone can help me or point me in the right direction.<br/><br/>Regards,<br/>Trevor<br/>Wed, 12 Aug 2009 21:15:54 Z2009-08-12T22:02:12Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/0f2fe589-65fb-4462-812e-a7fddcfcc017http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/0f2fe589-65fb-4462-812e-a7fddcfcc017NirShresthahttp://social.msdn.microsoft.com/Profile/en-US/?user=NirShresthaFailing Database mail in clustered environment.<p>Hi,<br/>we had set up database mail which used to work fine. But now its been failing giving this messages:<br/><br/>Message<br/>1) Exception Information<br/>===================<br/>Exception Type: System.NullReferenceException<br/>Message: Object reference not set to an instance of an object.<br/>Data: System.Collections.ListDictionaryInternal<br/>TargetSite: Microsoft.SqlServer.Management.SqlIMail.Server.Objects.Account GetAccount(Int32)<br/>HelpLink: NULL<br/>Source: DatabaseMailEngine</p> <p>StackTrace Information<br/>===================<br/>   at Microsoft.SqlServer.Management.SqlIMail.Server.DataAccess.DataAccessAdapter.GetAccount(Int32 accountID)<br/>   at Microsoft.SqlServer.Management.SqlIMail.Server.Controller.CommandFactory.CreateSendMailCommand(DBSession dbSession)<br/>   at Microsoft.SqlServer.Management.SqlIMail.Server.Controller.CommandFactory.CreateCommand(DBSession dbSession)<br/>   at Microsoft.SqlServer.Management.SqlIMail.Server.Controller.CommandRunner.Run(DBSession db)<br/>   at Microsoft.SqlServer.Management.SqlIMail.IMailProcess.ThreadCallBack.MailOperation(Object o)<br/><br/><br/><br/>I am completely out of clue. Any help would be appreciated.<br/><br/>Thanks</p>Wed, 29 Jul 2009 15:53:49 Z2009-08-24T03:39:00Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/77511961-a151-4717-ae20-c6fdc6bd4de0http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/77511961-a151-4717-ae20-c6fdc6bd4de0NirShresthahttp://social.msdn.microsoft.com/Profile/en-US/?user=NirShresthaSetting up alerts!! Urgent.....Hi <br/>I have 2005 box and need to set up alerts that will send email with respsetive message. I know that I have to configure database mail that use SMTP. My problem is, we are using Outlook express that use MAPI, so I am not being able to configure database mail. Please help me out to make outlook express works on 2005 box.<br/><br/>ThanksWed, 29 Jul 2009 14:28:37 Z2009-08-05T07:10:10Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a821e9c3-f137-4984-a331-0d05c7433feahttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a821e9c3-f137-4984-a331-0d05c7433fearobertlamourhttp://social.msdn.microsoft.com/Profile/en-US/?user=robertlamourI want to create an operator alert on my SQL 2008 serverI want to create a operator Alert custom message that executes a job <div>the job task is to backup the database will full/diagnostic/logistic backups...</div>Mon, 27 Jul 2009 22:34:33 Z2009-07-31T17:06:12Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/25108e2c-d168-4e18-a3c8-1437a29620e2http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/25108e2c-d168-4e18-a3c8-1437a29620e2Patrick Canolehttp://social.msdn.microsoft.com/Profile/en-US/?user=Patrick%20CanoleNo database mail on SQL 2005 SP2 64 bit EE cluster.<p align=left><font face=Arial size=2>I've got database mail working on all my other servers except my cluster machine (running Windows Server 2003 64 bit EE).<br><br>I'm up-to-date on my service packs.  The setup of database mail seems to work fine.  Outlook Express works on that machine with the same account.  My other database can send mail.<br><br>I've add all relevant machine information to the hosts file.  I've dropped and recreate the profile.  I've restarted the SQL Server Agent.<br><br>I get the successful &quot;Mail queued&quot; message, but I never receive anything.<br><br>Here's the message I get in my mail log:<br><br><br>1) Exception Information  ===================  Exception Type: System.NullReferenceException  Message: Object reference not set to an instance of an object.  Data: System.Collections.ListDictionaryInternal  TargetSite: Microsoft.SqlServer.Management.SqlIMail.Server.Objects.Account GetAccount(Int32)  HelpLink: NULL  Source: DatabaseMailEngine    StackTrace Information  ===================     at Microsoft.SqlServer.Management.SqlIMail.Server.DataAccess.DataAccessAdapter.GetAccount(Int32 accountID)     at Microsoft.SqlServer.Management.SqlIMail.Server.Controller.CommandFactory.CreateSendMailCommand(DBSession dbSession)     at Microsoft.SqlServer.Management.SqlIMail.Server.Controller.CommandRunner.Run(DBSession db)     at Microsoft.SqlServer.Management.SqlIMail.IMailProcess.ThreadCallBack.MailOperation(Object o)<br><br><br><br>Anyone seen anything like this?  Again, this is my only machine where database mail doesn't work.<br><br></font></p>Mon, 07 Apr 2008 18:17:08 Z2009-07-29T16:22:57Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/5f771fa5-d8e7-4565-8644-2f2029c1ed97http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/5f771fa5-d8e7-4565-8644-2f2029c1ed97saurabh9http://social.msdn.microsoft.com/Profile/en-US/?user=saurabh9Log to file if a mail was sentHi,<br/> Can I somhow log to a file if a mail was finally sent or not sent by the notification services? I am using SQL 2005Wed, 06 May 2009 04:23:22 Z2009-07-28T06:04:20Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f9695887-5677-4168-8c6c-b2229bd5ca10http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f9695887-5677-4168-8c6c-b2229bd5ca10Gowri Yadhavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Gowri%20YadhavHow To Install Sql Server 2005 Entrire Components in silent ModeHi guys..<br><br>I have Developed an Application in vb.net. It Works Well in My Local Machine.. I want to Check that application in my Client Machine.. Before That, I also Check Whether SQL Server 2005 is installed or not in a Client Machien.. If not, Then My application Automaticaly Install Sql Server in silent Mode. Without any user interventions... After Completing that installation , My Appplication Would start that Normal Process.<br>I tried..But  What i Found is Only , Sql Server Native Client and Sql Server Supported Files Are Installed. Sql Server  Configuration Manager is not installed.. How I Solve this Problem... instance  name are not Created How To Create An Instance..<br><br>I need Answers Very Urgent..<br><br><br><br>Help me. <br><br>Thanks in Advance<br>Gowri,G<br>Fri, 18 Apr 2008 11:40:41 Z2009-07-27T18:51:37Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/3f2dbd91-f223-411d-9c66-07be3ffcfed2http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/3f2dbd91-f223-411d-9c66-07be3ffcfed2SarxMXhttp://social.msdn.microsoft.com/Profile/en-US/?user=SarxMXWhat happend with NS in 2008?<p align=left><font face=Arial size=2>The cuestion is because now i´m trying to implement NS for my aplicactions but i´m afraid it is not supported in 2008 (or newest version)...  at this moment Technet talk only about NS 2005... someone have information about NS 2008?</font></p> <p align=left> </p> <p align=left>This is the driagram form Sql Server 2008...</p> <p align=left><a title="http://msdn2.microsoft.com/es-mx/library/ms159106(sql.100).aspx" href="http://msdn2.microsoft.com/es-mx/library/ms159106(sql.100).aspx">http://msdn2.microsoft.com/es-mx/library/ms159106(sql.100).aspx</a></p> <p align=left> </p> <p align=left>Where is NS 2008?</p> <div></div> <div align=left> </div> <div align=left>Thanks</div>Tue, 14 Aug 2007 21:13:17 Z2009-08-09T10:27:36Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f8dff009-3976-471e-a681-b498b9536adahttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f8dff009-3976-471e-a681-b498b9536adaPatrick Granthttp://social.msdn.microsoft.com/Profile/en-US/?user=Patrick%20GrantChecking Delivery Failure Reasons / SQL Server 2005<p>How can I check the reasons for Delivery failures by Notification Services? (I have looked everywhere I can think of without much luck.)<br/>Does anyone know where I can get a simple example to figure out how this service works ????<br/><br/>I have been trying an example in Step by Step Books and everything seemed fine until I ran it.  I can see all the data that should be in the in various tables, so everything looks fine on the face of it.  But when I look at example, it has created about 20-30 tables and about as many stored procedures which makes it very difficult to track down the problem, its way too complex for what should be a simple example (hint to the authors here...).  Anyway after looking through various views I found some evidence of delivery failure but no reason is given.  I would have thought there would be log somewhere to indicate what went wrong but I cannot find it.    See info below:<br/><br/> <table style="width:503pt;border-collapse:collapse" border=0 cellspacing=0 cellpadding=0 width=670> <colgroup span=1><col style="width:13pt" span=1 width=17><col style="width:41pt" span=1 width=55><col style="width:42pt" span=1 width=56><col style="width:65pt" span=2 width=87><col style="width:34pt" span=1 width=45><col style="width:25pt" span=4 width=33><col style="width:60pt" span=1 width=80><col style="width:83pt" span=1 width=111></colgroup> <tbody> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">1</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder1</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BN</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">21/02/1962 13:00</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Fish Eagle on Crystal Beach</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">2</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder2</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BM</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">22/02/1962 11:01</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Giant Heron at Birdinia Marshes</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">3</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder3</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BSC</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">21/02/1962 02:00</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Night Owl at Pine Valley, mating calls</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">4</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:42</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder2</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Phone</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BM</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">22/02/1962 11:01</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Giant Heron at Birdinia Marshes</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">5</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder1</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BN</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">21/02/1962 13:00</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Fish Eagle on Crystal Beach</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">6</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder2</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BM</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">22/02/1962 11:01</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Giant Heron at Birdinia Marshes</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">7</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder3</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Email</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BSC</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">21/02/1962 02:00</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Night Owl at Pine Valley, mating calls</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24 align=right><span style="font-size:xx-small;font-family:Calibri">8</span></td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55><span style="font-size:xx-small;font-family:Calibri">FileChannel</span></td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56><span style="font-size:xx-small;font-family:Calibri">PGDESKTOP</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl64 style="width:65pt;background-color:transparent;border:#ece9d8" width=87 align=right><span style="font-size:xx-small;font-family:Calibri">29/06/2009 16:43</span></td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45><span style="font-size:xx-small;font-family:Calibri">Delivery failed</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Birder2</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">Phone</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">en-us</span></td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33><span style="font-size:xx-small;font-family:Calibri">BM</span></td> <td class=xl64 style="width:60pt;background-color:transparent;border:#ece9d8" width=80 align=right><span style="font-size:xx-small;font-family:Calibri">22/02/1962 11:01</span></td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111><span style="font-size:xx-small;font-family:Calibri">Giant Heron at Birdinia Marshes</span></td> </tr> <tr style="height:18pt" height=24> <td class=xl63 style="width:13pt;height:18pt;background-color:transparent;border:#ece9d8" width=17 height=24> </td> <td class=xl63 style="width:41pt;background-color:transparent;border:#ece9d8" width=55> </td> <td class=xl63 style="width:42pt;background-color:transparent;border:#ece9d8" width=56> </td> <td class=xl63 style="width:65pt;background-color:transparent;border:#ece9d8" width=87> </td> <td class=xl63 style="width:65pt;background-color:transparent;border:#ece9d8" width=87> </td> <td class=xl63 style="width:34pt;background-color:transparent;border:#ece9d8" width=45> </td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33> </td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33> </td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33> </td> <td class=xl63 style="width:25pt;background-color:transparent;border:#ece9d8" width=33> </td> <td class=xl63 style="width:60pt;background-color:transparent;border:#ece9d8" width=80> </td> <td class=xl63 style="width:83pt;background-color:transparent;border:#ece9d8" width=111> </td> </tr> </tbody> </table> </p><hr class="sig">PG001Mon, 29 Jun 2009 17:20:51 Z2009-09-27T10:51:28Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f6790116-fc98-4a51-82f7-936c10fb0c43http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/f6790116-fc98-4a51-82f7-936c10fb0c43itsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmiConsuming WCF in custom Delivery ProtocolHi<br/><br/>I am writting custom delivery protocol to get it work as per my requirements. I have message template service which gives me required data. <br/><br/>I have a WCF service , where should i keep client config as custom delivery protocol is going to be dll? where is the client workspace to keep my consumer bindings config?<br/><br/>Regards,<br/>RashmiWed, 01 Jul 2009 15:18:53 Z2009-11-24T11:51:23Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a27cab92-543a-4033-8b83-006f874f90fbhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/a27cab92-543a-4033-8b83-006f874f90fbitsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmiCan I use my database transactional tables as event dataHi<br/><br/>Can I use my application database table as a events data to match with subscriptions instead of creating events schema separately while creating NS application? <br/><br/>Regards,<br/>RashmiWed, 17 Jun 2009 16:12:45 Z2009-07-01T15:14:41Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/77b6cc27-0f44-45cb-b676-03ac72694abdhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/77b6cc27-0f44-45cb-b676-03ac72694abditsRashmihttp://social.msdn.microsoft.com/Profile/en-US/?user=itsRashmiAbout designing SQL based SSNS servicehi <div><br/></div> <div>I am new to SSNS and trying to configure survey launch notification system on my database.</div> <div>I have some questions</div> <div><br/></div> <div>I have created SQL based Event rule and provider rules, also managed to use my db as application db and joined event rule with my survyparticipant table.  but somewhat confused in subscriptions and subscribers. what exactly is the difference between these two? </div> <div><br/></div> <div>also can I use my surveyparticipant table itself as a subscription table? because anywas each participant is going to be subscriber.</div> <div><br/></div> <div>another question is there any event generated once notification is sent to the particular subscriber? I have to update participant stauts once he / she is notified for survey launch.</div> <div><br/></div> <div>another one is how it handles schedulers? I mean i want to launch survey at 3 pm to all participants now if there are many of them will it send first notification at 3 pm and last one at 3.30 pm?? </div> <div><br/></div> <div>I am using NMO for creating the service. </div> <div><br/></div> <div>Any advice in this regards will be really helpful.</div> <div><br/></div> <div>Reagrds,</div> <div>Rashmi</div>Wed, 20 May 2009 06:01:26 Z2009-11-24T12:21:26Zhttp://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/b9a32d06-d142-4231-b6b7-6e35a26e9176http://social.msdn.microsoft.com/Forums/en-US/sqlnotificationservices/thread/b9a32d06-d142-4231-b6b7-6e35a26e9176MrMissionImpossiblehttp://social.msdn.microsoft.com/Profile/en-US/?user=MrMissionImpossibleADF file creationHi all, how can i create an ADF (Applicaiton definition file) in SQL server 2005 management studio?<br/> <br/> <br/> thx in advanceTue, 16 Jun 2009 11:30:48 Z2009-06-30T11:44:02Z