cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
PeakyBlinder
Engaged Sweeper

Hello,

I'm trying to get all the Linux Servers with their Summary, Hardware & User Info. See the below sample:

PeakyBlinder_0-1672625533015.png

 

Currently, here's the SQL code I'm using.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblLinuxSystem.KernelName,
tblLinuxSystem.KernelRelease,
tblLinuxSystem.OSRelease,
tblLinuxSystem.OperatingSystem,
tblAssets.Processor,
tblAssetCustom.Contact,
tblAssetCustom.Model
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblLinuxSystem On tblAssets.AssetID = tblLinuxSystem.AssetID
Where tblAssetCustom.State = 1

Thank you in advance! Happy new year! 🎆
PB

1 REPLY 1
PeakyBlinder
Engaged Sweeper

Hello Guys, badly need your help 😞