SQL Server Alerts - Best Practices - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:49:16Zhttp://stackoverflow.com/feeds/question/334650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/334650/sql-server-alerts-best-practices1SQL Server Alerts - Best PracticesGern Blandston2008-12-02T16:47:53Z2008-12-02T17:50:54Z
<p>What SQL Server Alerts do you always setup for every database? What do you always monitor regardless of the database?</p>
http://stackoverflow.com/questions/334650/sql-server-alerts-best-practices/334800#3348002Answer by Nick Kavadias for SQL Server Alerts - Best PracticesNick Kavadias2008-12-02T17:40:30Z2008-12-02T17:50:54Z<p>You should monitor and be alerted for severity levels 17 to 25. <br></p>
<p>Severity levels from 17 through 19 will require intervention from a DBA, they're not as serious as 20-25 but the DBA needs to be alerted.<br>
17 Insufficient Resources<br>
18 Nonfatal Internal Error Detected<br>
19 Error in Resource<br>
<br>
<br>
These are serious errors that will mean SQL Server is no longer working<br>
20 SQL Error in Current Process <br>
21 SQL Fatal Error in Database dbid Processes<br>
22 SQL Fatal Error Table Integrity Suspect<br>
23 SQL Fatal Error: Database Integrity Suspect<br>
24,25 Hardware Error<br></p>
<p>for more information on the severity levels see <a href="http://msdn.microsoft.com/en-us/library/aa937483(SQL.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa937483(SQL.80).aspx</a></p>