Let me provide another example...
When the following is run I get 1300+ machines...
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 Inner Join tblComputerSystemProduct On tblComputers.Computername = tblComputerSystemProduct.Computername Inner Join web40ActiveComputers On web40ActiveComputers.Computername = tblComputers.Computername Inner Join Web40OSName On Web40OSName.Computername = tblComputers.Computername Inner Join web40ProcessorCapacity On web40ProcessorCapacity.Computername = tblComputers.Computername Order By web40ProcessorCapacity.NrOfProcessors Desc, tblComputers.Computer
However, when this is run I only get around 600...
Select Top 1000000 dbo.tblComputers.LastknownIP As IP, dbo.tblComputers.ComputerUnique, Web40OSName.OSname, tblCompCustom.BarCode From dbo.tblComputers Inner Join dbo.web40ActiveComputers On dbo.tblComputers.Computername = dbo.web40ActiveComputers.Computername Inner Join Web40OSName On Web40OSName.Computername = dbo.tblComputers.Computername Inner Join web40AllIPLocations On web40AllIPLocations.Computername = dbo.tblComputers.Computername Inner Join tblCompCustom On dbo.tblComputers.Computername = tblCompCustom.Computername Where dbo.tblComputers.LastknownIP <> '' Order By dbo.tblComputers.IPNumeric
So, again the goal is just to get a list of Hostname, IP and Barcode for all devices and windows machines in one report.
Thank you.