Hi,
I am trying to create a report, similar to Memory Upgrade Report, but I want it to show me all the computers, not just the one that can be upgraded.
My idea is to see, the assetname, OSname, Model, MaxCapacity, Memory, Slots used, Slots available and Slots free.
This is the SQL I have, I would like to add the missing data
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Description,
tsysOS.OSname,
tblAssetCustom.Model,
tblAssets.Lastseen,
tsysOS.Image As icon,
tblAssets.Memory,
tblPhysicalMemoryArray.MemoryDevices
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblPhysicalMemoryArray On tblAssets.AssetID =
tblPhysicalMemoryArray.AssetID
Where tblAssetCustom.State = 1
Order By tblAssets.AssetName