<?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: HP Insight Manager SQL request in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098489#M50053</link>
    <description>I believe it actually is physical.  I think they just use the term "logical".&lt;BR /&gt;&lt;BR /&gt;This query will get you all the CPUs:&lt;BR /&gt;&lt;BR /&gt;SELECT     TOP 100 PERCENT dbo.devices.DeviceKey, dbo.DB_DeviceCpu.CpuSpeed, dbo.DB_DeviceCpu.CpuIndex AS SlotNumber, &lt;BR /&gt;                      'CPU' + STR(dbo.DB_DeviceCpu.CpuIndex, 2, 0) AS Instance, STR(dbo.DB_DeviceCpu.DeviceKey, 5, 0) + STR(dbo.DB_DeviceCpu.CpuIndex, 1, 0) &lt;BR /&gt;                      AS Processor_LUID, dbo.DB_DeviceCpu.CpuName AS Name&lt;BR /&gt;FROM         dbo.DB_DeviceCpu INNER JOIN&lt;BR /&gt;                      dbo.devices ON dbo.DB_DeviceCpu.DeviceKey = dbo.devices.DeviceKey&lt;BR /&gt;ORDER BY dbo.devices.DeviceKey, dbo.devices.Name&lt;BR /&gt;&lt;BR /&gt;If you pump the results of the above to a table, lets call it MyCorp_CPU, and then run this, it should give you a count of each:&lt;BR /&gt;&lt;BR /&gt;SELECT     DeviceKey, COUNT(CPUSpeed) AS Processors&lt;BR /&gt;FROM         dbo.MyCorp_CPU&lt;BR /&gt;GROUP BY DeviceKey&lt;BR /&gt;&lt;BR /&gt;You just have to link up the DeviceKey back to a server name to make the results meaningful.&lt;BR /&gt;&lt;BR /&gt;Nelson</description>
    <pubDate>Tue, 18 Mar 2008 15:37:31 GMT</pubDate>
    <dc:creator>NJK-Work</dc:creator>
    <dc:date>2008-03-18T15:37:31Z</dc:date>
    <item>
      <title>HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098488#M50052</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Is there someone who know how to get the number of physical processors by server using HP System Insight Manager SQL database.&lt;BR /&gt;&lt;BR /&gt;It seems just to store informations about logical processors.&lt;BR /&gt;&lt;BR /&gt;Any idea ?</description>
      <pubDate>Tue, 18 Mar 2008 14:15:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098488#M50052</guid>
      <dc:creator>zajac</dc:creator>
      <dc:date>2008-03-18T14:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098489#M50053</link>
      <description>I believe it actually is physical.  I think they just use the term "logical".&lt;BR /&gt;&lt;BR /&gt;This query will get you all the CPUs:&lt;BR /&gt;&lt;BR /&gt;SELECT     TOP 100 PERCENT dbo.devices.DeviceKey, dbo.DB_DeviceCpu.CpuSpeed, dbo.DB_DeviceCpu.CpuIndex AS SlotNumber, &lt;BR /&gt;                      'CPU' + STR(dbo.DB_DeviceCpu.CpuIndex, 2, 0) AS Instance, STR(dbo.DB_DeviceCpu.DeviceKey, 5, 0) + STR(dbo.DB_DeviceCpu.CpuIndex, 1, 0) &lt;BR /&gt;                      AS Processor_LUID, dbo.DB_DeviceCpu.CpuName AS Name&lt;BR /&gt;FROM         dbo.DB_DeviceCpu INNER JOIN&lt;BR /&gt;                      dbo.devices ON dbo.DB_DeviceCpu.DeviceKey = dbo.devices.DeviceKey&lt;BR /&gt;ORDER BY dbo.devices.DeviceKey, dbo.devices.Name&lt;BR /&gt;&lt;BR /&gt;If you pump the results of the above to a table, lets call it MyCorp_CPU, and then run this, it should give you a count of each:&lt;BR /&gt;&lt;BR /&gt;SELECT     DeviceKey, COUNT(CPUSpeed) AS Processors&lt;BR /&gt;FROM         dbo.MyCorp_CPU&lt;BR /&gt;GROUP BY DeviceKey&lt;BR /&gt;&lt;BR /&gt;You just have to link up the DeviceKey back to a server name to make the results meaningful.&lt;BR /&gt;&lt;BR /&gt;Nelson</description>
      <pubDate>Tue, 18 Mar 2008 15:37:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098489#M50053</guid>
      <dc:creator>NJK-Work</dc:creator>
      <dc:date>2008-03-18T15:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098490#M50054</link>
      <description>thank you it's perfect for my job.&lt;BR /&gt;&lt;BR /&gt;but i'm still sure that in HP SIM console and HP HomePage, we can't see physical one but just logical.</description>
      <pubDate>Wed, 19 Mar 2008 08:27:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098490#M50054</guid>
      <dc:creator>zajac</dc:creator>
      <dc:date>2008-03-19T08:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098491#M50055</link>
      <description>Glad to help.&lt;BR /&gt;&lt;BR /&gt;Where is it that you see "logical" used for the terminology?&lt;BR /&gt;&lt;BR /&gt;Nelson</description>
      <pubDate>Wed, 19 Mar 2008 20:33:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098491#M50055</guid>
      <dc:creator>NJK-Work</dc:creator>
      <dc:date>2008-03-19T20:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098492#M50056</link>
      <description>under permofance/Utilization on the system page in HP SIM&lt;BR /&gt;&lt;BR /&gt;There's a menu Processor&lt;BR /&gt;for example&lt;BR /&gt;&lt;BR /&gt;Processor Index Type Utilization (%) &lt;BR /&gt;0 1866 MHz Intel Xeon 0 &lt;BR /&gt;1 1866 MHz Intel Xeon 0 &lt;BR /&gt;2 1866 MHz Intel Xeon 0 &lt;BR /&gt;3 1866 MHz Intel Xeon 0 &lt;BR /&gt;</description>
      <pubDate>Thu, 20 Mar 2008 07:54:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098492#M50056</guid>
      <dc:creator>zajac</dc:creator>
      <dc:date>2008-03-20T07:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098493#M50057</link>
      <description>This information is rendered via SNMP data on the server.</description>
      <pubDate>Thu, 20 Mar 2008 11:25:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098493#M50057</guid>
      <dc:creator>V Deepak Kumar</dc:creator>
      <dc:date>2008-03-20T11:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098494#M50058</link>
      <description>Yes zajac,&lt;BR /&gt;this is physical ones but yes not accurate as these data coming through SNMP directly from server.</description>
      <pubDate>Thu, 20 Mar 2008 12:01:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098494#M50058</guid>
      <dc:creator>Change_happens</dc:creator>
      <dc:date>2008-03-20T12:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: HP Insight Manager SQL request</title>
      <link>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098495#M50059</link>
      <description>sql request was clean.</description>
      <pubDate>Thu, 20 Mar 2008 12:31:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/hp-insight-manager-sql-request/m-p/5098495#M50059</guid>
      <dc:creator>zajac</dc:creator>
      <dc:date>2008-03-20T12:31:41Z</dc:date>
    </item>
  </channel>
</rss>

