All, I am looking for some SWQL/SQL code that can pull out the following information from the database.
Columns Include:
You can't have "all other volumes" in a field. You can have a report that's "grouped" by the Server Name, IP, etc. and then lists out the volumes under it.
If you just want the raw data, then it's a call to Orion.Nodes and a connection to Orion.Volumes via the Navigational Property.
Orion.Nodes
Orion.Volumes
SELECT [Nodes].SysName , [Nodes].IPAddress , [Nodes].CPUCount , [Nodes].TotalMemory , [Nodes].Volumes.DeviceID , [Nodes].Volumes.VolumePercentUsedFROM Orion.Nodes AS [Nodes]WHERE IsNull([Nodes].Volumes.DeviceID, '') <> ''AND [Nodes].Volumes.VolumeType LIKE 'Fixed%'
this is a good starting point. I was hoping to list the devices down the left hand side with the CPU, Memory, and Drives listed across the top. Can we concatenate the memory down to 8GM, 16GB, etc...
SQL and SWQL don't natively work that way if you are using it raw. The reporting engine doesn't work that way either, but will situationally convert bits and bytes to storage sizes.
The only way to accomplish what you are trying to do is to use a third-part reporting engine over top of the extracted data. Each of those would have their own configuration processes.
Ok,
Thanks,