- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- retrieving data from the db
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2005 09:34 AM
08-25-2005 09:34 AM
I can connect to the database through the web part but it looks like most of the tables store binary data. Is there any way to retrieve from the database the same information that is contained in the "Systems Overview" page and "All Systems" page? Is this even possible since I'm using C# and I assume the binary data is Java objects?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 09:43 AM
08-26-2005 09:43 AM
SolutionPerhaps I am over-simplifying it or not understanding what you are asking, but you should be able to write a simple SQL query to retrieve the data you need.
For example, I wrote a custom server inventory database that pulls in information from SIM tables and links the results of this query to my own custom tables. The query I use to pull the data is:
SELECT TOP 100 PERCENT dbo.devices.DeviceKey, dbo.devices.Name AS [Server Name], dbo.devices.ProductName AS [Server Model],
dbo.DB_DeviceInfoEx.TotalMemory AS [Total Memory], dbo.DB_DeviceInfoEx.ROMVersion AS [ROM Version],
dbo.DB_DeviceInfoEx.SerialNumber AS [Serial Number], dbo.DB_DeviceInfoEx.OSName AS [Operating System],
dbo.devices.ProductTypeStr AS ProductType
FROM dbo.devices INNER JOIN
dbo.DB_DeviceInfoEx ON dbo.devices.DeviceKey = dbo.DB_DeviceInfoEx.DeviceKey
WHERE (dbo.devices.ProductTypeStr = 'Server') OR
(dbo.devices.ProductTypeStr = 'Cluster')
ORDER BY dbo.devices.Name
Let me know if you are looking for something more than this?
Nelson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 09:44 AM
08-26-2005 09:44 AM
Re: retrieving data from the db
Nelson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 09:46 AM
08-26-2005 09:46 AM
Re: retrieving data from the db
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2005 09:52 AM
08-26-2005 09:52 AM
Re: retrieving data from the db
Nelson