Hi
I created the following report to know what computer model from what vendor are in use with how much total memory per machine.
Thats fine and working, now I need to get this joint to LAST USER. Is there any way to see the existing joints to each table, just like as a table chart of all tables in LanSweeper?
Here my code for maybe useful others:
Select Top 1000000
tblComputers.Computername,
Floor(Cast(Cast(tblComputersystem.TotalPhysicalMemory As bigint) / 1024 / 1024 As numeric)) As TMG,
tblComputerSystemProduct.Vendor,
tblComputerSystemProduct.Name,
tblComputersystem.TotalPhysicalMemory As MG
From tblComputers Inner Join tblComputerSystemProduct On tblComputers.Computername =
tblComputerSystemProduct.Computername Inner Join tblComputersystem On tblComputers.Computername =
tblComputersystem.Computername
Thanks a lot in advance
Cheers
Michael