<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: System Event Types in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086848#M29739</link>
    <description>Completely unsupported, but here's some SQL for your fun and education.  Requires HP SIM 5.1 at minimum for database compatibility.  Please note that I have not personally tried it.&lt;BR /&gt;&lt;BR /&gt;drop view noticeDesc&lt;BR /&gt;&lt;BR /&gt;create view noticeDesc as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, N'Severity' = CASE WHEN defaultSeverity = 100 THEN N'Informational' WHEN defaultSeverity = 1 THEN N'Normal' WHEN defaultSeverity = 2 THEN N'Warning'&lt;BR /&gt;&lt;BR /&gt;WHEN defaultSeverity = 3 THEN N'Minor' WHEN defaultSeverity = 4 THEN N'Major' WHEN defaultSeverity = 5 THEN N'Critical' ELSE CONVERT(char(10), &lt;BR /&gt;&lt;BR /&gt;defaultSeverity) END, &lt;BR /&gt;&lt;BR /&gt;category, largeValue as description from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'description' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt;drop view noticeCorr&lt;BR /&gt;&lt;BR /&gt;create view noticeCorr as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, largeValue as correction from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'correctiveAction' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt;drop view noticemsgFmt&lt;BR /&gt;&lt;BR /&gt;create view noticemsgFmt as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, largeValue as messageFormat from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'msgFormatString' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;select noticeDesc.typeIdStr, Severity, category, description, noticemsgFmt.messageFormat, noticeCorr.correction from noticeDesc &lt;BR /&gt;&lt;BR /&gt;left outer join noticemsgFmt on noticemsgFmt.typeIdStr = noticeDesc.typeIdStr&lt;BR /&gt;&lt;BR /&gt;left outer join noticeCorr on noticeCorr.typeIdStr = noticeDesc.typeIdStr&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 16 Oct 2007 15:13:07 GMT</pubDate>
    <dc:creator>David Claypool</dc:creator>
    <dc:date>2007-10-16T15:13:07Z</dc:date>
    <item>
      <title>System Event Types</title>
      <link>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086846#M29737</link>
      <description>Is there a searchable spreadsheet for sytem event types. When setting up auto event handling it can be hard to find the event I am looking for buried in several dropdown boxes.</description>
      <pubDate>Tue, 16 Oct 2007 07:59:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086846#M29737</guid>
      <dc:creator>mwalders</dc:creator>
      <dc:date>2007-10-16T07:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: System Event Types</title>
      <link>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086847#M29738</link>
      <description>That would be nice!&lt;BR /&gt;It'll be in the database but I've never gone looking for it.</description>
      <pubDate>Tue, 16 Oct 2007 14:49:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086847#M29738</guid>
      <dc:creator>Rob Buxton</dc:creator>
      <dc:date>2007-10-16T14:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: System Event Types</title>
      <link>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086848#M29739</link>
      <description>Completely unsupported, but here's some SQL for your fun and education.  Requires HP SIM 5.1 at minimum for database compatibility.  Please note that I have not personally tried it.&lt;BR /&gt;&lt;BR /&gt;drop view noticeDesc&lt;BR /&gt;&lt;BR /&gt;create view noticeDesc as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, N'Severity' = CASE WHEN defaultSeverity = 100 THEN N'Informational' WHEN defaultSeverity = 1 THEN N'Normal' WHEN defaultSeverity = 2 THEN N'Warning'&lt;BR /&gt;&lt;BR /&gt;WHEN defaultSeverity = 3 THEN N'Minor' WHEN defaultSeverity = 4 THEN N'Major' WHEN defaultSeverity = 5 THEN N'Critical' ELSE CONVERT(char(10), &lt;BR /&gt;&lt;BR /&gt;defaultSeverity) END, &lt;BR /&gt;&lt;BR /&gt;category, largeValue as description from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'description' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt;drop view noticeCorr&lt;BR /&gt;&lt;BR /&gt;create view noticeCorr as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, largeValue as correction from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'correctiveAction' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt;drop view noticemsgFmt&lt;BR /&gt;&lt;BR /&gt;create view noticemsgFmt as (&lt;BR /&gt;&lt;BR /&gt;select typeIdStr, largeValue as messageFormat from noticeType, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;WHERE stringresource.resourceclassname = N'Alerttype' AND &lt;BR /&gt;&lt;BR /&gt;stringresource.subclass = N'msgFormatString' AND noticeType.typeIdStr = stringresource.resourceName AND &lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id)&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;select noticeDesc.typeIdStr, Severity, category, description, noticemsgFmt.messageFormat, noticeCorr.correction from noticeDesc &lt;BR /&gt;&lt;BR /&gt;left outer join noticemsgFmt on noticemsgFmt.typeIdStr = noticeDesc.typeIdStr&lt;BR /&gt;&lt;BR /&gt;left outer join noticeCorr on noticeCorr.typeIdStr = noticeDesc.typeIdStr&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Oct 2007 15:13:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/system-event-types/m-p/4086848#M29739</guid>
      <dc:creator>David Claypool</dc:creator>
      <dc:date>2007-10-16T15:13:07Z</dc:date>
    </item>
  </channel>
</rss>

