<?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 Error in database. in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470211#M9277</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think exists a database error because the notice_view has: .....and noticetype.noticetype=stringresource.subclass??? a string=integer???&lt;BR /&gt;&lt;BR /&gt;What do you think??&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; best regards,&lt;BR /&gt;   Jose.</description>
    <pubDate>Tue, 25 Jan 2005 02:52:49 GMT</pubDate>
    <dc:creator>Jose Antonio_5</dc:creator>
    <dc:date>2005-01-25T02:52:49Z</dc:date>
    <item>
      <title>Error in database.</title>
      <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470211#M9277</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think exists a database error because the notice_view has: .....and noticetype.noticetype=stringresource.subclass??? a string=integer???&lt;BR /&gt;&lt;BR /&gt;What do you think??&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; best regards,&lt;BR /&gt;   Jose.</description>
      <pubDate>Tue, 25 Jan 2005 02:52:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470211#M9277</guid>
      <dc:creator>Jose Antonio_5</dc:creator>
      <dc:date>2005-01-25T02:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error in database.</title>
      <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470212#M9278</link>
      <description>I have find similar error in la view noticesview&lt;BR /&gt;&lt;BR /&gt;The error message is:&lt;BR /&gt;Detalles: 22018:[Microsoft][ODBC SQL Server Driver][SQL Server]Syntax error converting the varchar value 'Insight.DiscoveredDevice                                        ' to a column of data type int.&lt;BR /&gt;&lt;BR /&gt;Any ideas?</description>
      <pubDate>Tue, 25 Jan 2005 07:16:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470212#M9278</guid>
      <dc:creator>Carlos Pascual_1</dc:creator>
      <dc:date>2005-01-25T07:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in database.</title>
      <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470213#M9279</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;By the moment, I have to enter to resolve the problem ()&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;and cast(notices.NoticeType as varchar)=stringResource.ResourceName&lt;BR /&gt;....</description>
      <pubDate>Tue, 25 Jan 2005 07:28:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470213#M9279</guid>
      <dc:creator>Jose Antonio_5</dc:creator>
      <dc:date>2005-01-25T07:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error in database.</title>
      <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470214#M9280</link>
      <description>Try this:&lt;BR /&gt;&lt;BR /&gt;ALTER VIEW notices_view AS (&lt;BR /&gt;&lt;BR /&gt;select devices.Name as 'Device Name',&lt;BR /&gt;&lt;BR /&gt;'Severity' = case when noticeSeverity=100 then 'Informational' when noticeSeverity = 1 then 'Normal' when noticeSeverity=2 then 'Warning' when noticeSeverity=3 then 'Minor' when noticeSeverity=4 then 'Major' when noticeSeverity=5 then 'Critical' else convert(char(10), noticeSeverity) end,&lt;BR /&gt;&lt;BR /&gt;'state' = case when state=1 then 'Discovered' when state=2 then 'Not Cleared' when state = 5 then 'Cleared' when state = 6 then 'IN Progress' end,&lt;BR /&gt;&lt;BR /&gt;generated, cleared, largeValue as Description from notices,&lt;BR /&gt;&lt;BR /&gt;noticeType, devices, stringresource, stringtablelarge&lt;BR /&gt;&lt;BR /&gt;where notices.noticeType = noticeType.noticeType and&lt;BR /&gt;&lt;BR /&gt;notices.deviceKey = devices.deviceKey and&lt;BR /&gt;&lt;BR /&gt;stringresource.resourceclassname='Alerttype' and&lt;BR /&gt;&lt;BR /&gt;stringresource.subclass='description' and&lt;BR /&gt;&lt;BR /&gt;noticeType.TypeIdStr=stringresource.resourceName and&lt;BR /&gt;&lt;BR /&gt;stringtablelarge.id = stringresource.id&lt;BR /&gt;&lt;BR /&gt;and stringTableLarge.language = 'en'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jan 2005 08:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470214#M9280</guid>
      <dc:creator>Carlos Pascual_1</dc:creator>
      <dc:date>2005-01-27T08:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error in database.</title>
      <link>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470215#M9281</link>
      <description>Hi Carlos,&lt;BR /&gt;&lt;BR /&gt;I have made a little probe: (I have uncleared 267 events: 25 Critical, 43 Major, 46 Minor and 153 Warnings). &lt;BR /&gt;&lt;BR /&gt;If i try to obtain the "description" field with your query, I obtain 208 events, but if I try to obtain the "description" field with this query, I obtain 267). Do you know why? &lt;BR /&gt;&lt;BR /&gt;select notices.NoticeId, notices.NoticeSeverity, notices.Generated, devices.FullDNSName, devices.Name, devices.ProductName, devices.ProductSubType, devices.ProductTypeStr, notices.AssignedTo, notices.Comments, noticeType.TypeIdStr, noticeType.Category, noticeType.DispHandler, stringTableLarge.largeValue &lt;BR /&gt;from notices, noticeType, devices, stringResource, stringTableLarge &lt;BR /&gt;where ((notices.DeviceKey = devices.Devicekey) &lt;BR /&gt;and (notices.NoticeType = noticeType.NoticeType) &lt;BR /&gt;and (notices.NoticeSeverity&amp;lt;&amp;gt;100) &lt;BR /&gt;and (notices.State=2) &lt;BR /&gt;and (stringTableLarge.Language = 'en') &lt;BR /&gt;and stringResource.SubClass='description' &lt;BR /&gt;and cast(notices.NoticeType as varchar)=stringResource.ResourceName &lt;BR /&gt;and (stringTableLarge.id = stringResource.id)) &lt;BR /&gt;&lt;BR /&gt;By other hand, do you know the difference between "description" and "label"? &lt;BR /&gt;&lt;BR /&gt;Thanks for your interest.</description>
      <pubDate>Thu, 27 Jan 2005 09:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/error-in-database/m-p/3470215#M9281</guid>
      <dc:creator>Jose Antonio_5</dc:creator>
      <dc:date>2005-01-27T09:58:33Z</dc:date>
    </item>
  </channel>
</rss>

