Good Starting Places for SQL Server Alerts/Notifications? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:06:24Z http://stackoverflow.com/feeds/question/22306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/22306/good-starting-places-for-sql-server-alerts-notifications 0 Good Starting Places for SQL Server Alerts/Notifications? CrazyOnYou 2008-08-22T13:15:52Z 2008-09-05T06:36:35Z <p>Just recently started having issues with a SQL Server Agent Job that contains a SSIS package to extract production data and summarize it into a separate reporting database. </p> <p>I <em>think</em> that some of the Alerts/Notifications settings I tried playing with caused the problem as the job had been running to completion unattended for the previous two weeks.</p> <p>So... Where's a good place to start reading up on SQL Agent Alerts and Notifications? I want to enable some sort of alert/notification so that I'm always informed: </p> <ol> <li>That the job completes successfully (as a check to ensure that it's always executed), or </li> <li>That the job ran into some sort of error, which should include enough info (such as error number) that I can diagnose the cause of the error</li> </ol> <p>As always, any help will be greatly appreciated!</p> http://stackoverflow.com/questions/22306/good-starting-places-for-sql-server-alerts-notifications/22334#22334 0 Answer by bofe for Good Starting Places for SQL Server Alerts/Notifications? bofe 2008-08-22T13:26:08Z 2008-08-22T13:26:08Z <p>You'll want to have "When the job completes" marked in your notifications page on the job's properties.</p> <p>Just go to that dropdown and switch it to job completion instead of failure (which is on the screenshot).</p> <p><img src="http://uploader.ws/upload/200808/notifications.png" alt="alt text" /></p> <p>You'll also want to make sure that your server has e-mail configured. I think it's under SQL Surface Area Configuration for Features.</p> http://stackoverflow.com/questions/22306/good-starting-places-for-sql-server-alerts-notifications/22344#22344 0 Answer by SQLMenace for Good Starting Places for SQL Server Alerts/Notifications? SQLMenace 2008-08-22T13:29:10Z 2008-08-22T13:29:10Z <p>In each step of the job click on advanced then from there you can log to a file or to a table, this will have all errorcodes and other things why the job failed You should be able to see this also from the job history. Right click on the job-->view history, click on the + sign to expand, the click on each step and it will be in the lower panel</p> <p>To set up notifications you need to set up an operator and the in the job on the notification tab you pick it from the email dropdown</p> http://stackoverflow.com/questions/22306/good-starting-places-for-sql-server-alerts-notifications/45329#45329 1 Answer by Matt for Good Starting Places for SQL Server Alerts/Notifications? Matt 2008-09-05T06:27:00Z 2008-09-05T06:36:35Z <p><a href="http://msdn.microsoft.com/en-us/library/ms130214(SQL.90).aspx" rel="nofollow">Books Online</a> is probably a good place to start (or at least I like it and generally find it useful).</p> <p>SQLMenace and bofe made some good points. Here's my additional two cents:</p> <p>I'd recommend <a href="http://msdn.microsoft.com/en-us/library/ms188298(SQL.90).aspx" rel="nofollow">configuring Database Mail</a> rather than SQL Mail (i.e. SMTP vs. MAPI, which I think is deprecated anyway). Once you get the mail profile configured, you'll have to also configure the SQL agent to use that mail profile (which is just a page of settings for the agent properties), or else your SSIS job notifications won't actually get sent, even though you can successfully send a test email from Management Studio.</p> <p>I don't use alerts as often as job notifications, so the only tricky thing I can recall about them is that if you're raising an error and you want the alert to email you when that happens, you have to make sure that the raised error gets written to the log. I think that just boils down to "RAISERROR ... WITH LOG"; here's the <a href="http://msdn.microsoft.com/en-us/library/ms178592.aspx" rel="nofollow">BOL link</a> for the syntax details. </p>