10-05-2011 10:45 PM
10-07-2011 11:53 AM
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, Web40OSName.OSname, Web40OSName.Compimage As icon,
web40ProcessorCapacity.CPU, web40ProcessorCapacity.Name,
web40ProcessorCapacity.MaxClockSpeed As ClockSpeed,
web40ProcessorCapacity.NrOfProcessors As #CPU
From tblComputers Left Join
tblComputerSystemProduct On tblComputers.Computername =
tblComputerSystemProduct.Computername Left Join
web40ActiveComputers On web40ActiveComputers.Computername =
tblComputers.Computername Left Join
Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join
web40ProcessorCapacity On web40ProcessorCapacity.Computername =
tblComputers.Computername
Order By web40ProcessorCapacity.NrOfProcessors Desc, tblComputers.Computer
Select Top 1000000 tblComputers.LastknownIP As IP, tblComputers.ComputerUnique,
Web40OSName.OSname, tblCompCustom.BarCode
From tblComputers Left Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Join
Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join
web40AllIPLocations On web40AllIPLocations.Computername =
tblComputers.Computername Left Join
tblCompCustom On tblComputers.Computername = tblCompCustom.Computername
Where tblComputers.LastknownIP <> ''
Order By tblComputers.IPNumeric
10-08-2011 03:12 AM
Lansweeper wrote:
It is currently extremely difficult to create reports that include both computer and device info. This issue will be addressed in one of our future updates, where computers and devices will be merged into one “asset” category.
In regards to your post about the discrepancy between the two reports: when linking tables to tblComputers, make sure to right-click the link and choose “Select all rows from tblComputers”. This ensures that your results include empty entries present in the selected fields.
The following two queries will yield more complete results:
Query 1Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, Web40OSName.OSname, Web40OSName.Compimage As icon,
web40ProcessorCapacity.CPU, web40ProcessorCapacity.Name,
web40ProcessorCapacity.MaxClockSpeed As ClockSpeed,
web40ProcessorCapacity.NrOfProcessors As #CPU
From tblComputers Left Join
tblComputerSystemProduct On tblComputers.Computername =
tblComputerSystemProduct.Computername Left Join
web40ActiveComputers On web40ActiveComputers.Computername =
tblComputers.Computername Left Join
Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join
web40ProcessorCapacity On web40ProcessorCapacity.Computername =
tblComputers.Computername
Order By web40ProcessorCapacity.NrOfProcessors Desc, tblComputers.Computer
Query 2Select Top 1000000 tblComputers.LastknownIP As IP, tblComputers.ComputerUnique,
Web40OSName.OSname, tblCompCustom.BarCode
From tblComputers Left Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Join
Web40OSName On Web40OSName.Computername = tblComputers.Computername Left Join
web40AllIPLocations On web40AllIPLocations.Computername =
tblComputers.Computername Left Join
tblCompCustom On tblComputers.Computername = tblCompCustom.Computername
Where tblComputers.LastknownIP <> ''
Order By tblComputers.IPNumeric
10-06-2011 12:33 AM
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now