Hello,
I'm trying to get all the Linux Servers with their Summary, Hardware & User Info. See the below sample:
![PeakyBlinder_0-1672625533015.png PeakyBlinder_0-1672625533015.png](/t5/image/serverpage/image-id/2319i100621ECE00C9042/image-size/medium?v=v2&px=400)
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