‎07-22-2013 07:30 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.Domain,
tblAssets.Username,
tblAssets.IPAddress,
tblAssets.Description,
tblRegistry.Value,
tsysOS.OSname,
tblComputersystem.SystemType,
tblAssets.Userdomain,
tblAssets.Lastseen
From tblAssets
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID,
tsysOS
Where tblRegistry.Value Like '%6.0' And tsysOS.OSname Like '%Win 7' And
tblComputersystem.SystemType Like 'x86%'
Solved! Go to Solution.
‎07-23-2013 01:29 PM
‎07-23-2013 01:29 PM
‎07-23-2013 03:13 PM
Lansweeper wrote:
You've added tsysOS, but you didn't link it, so you are multiplying your number of records in the report by the number of records in tsysOS this way.
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now