→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎05-31-2012 12:29 PM
SELECT TOP (1000000) tblSoftware.softwareName AS Software, COUNT(tblcomputers.ComputerUnique) AS Equipos
FROM tblcomputers INNER JOIN
tblSoftware ON tblcomputers.Computername = tblSoftware.ComputerName CROSS JOIN
tsysantivirus
WHERE (tblSoftware.softwareName LIKE tsysantivirus.Software)
GROUP BY tblSoftware.softwareName
Solved! Go to Solution.
‎05-31-2012 01:54 PM
Select Top (1000000) tblSoftware.softwareName As Software, tblSoftware.softwareVersion As Version, Count(tblComputers.ComputerUnique) As Equipos From tblComputers Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName, tsysantivirus Where tblSoftware.softwareName Like tsysantivirus.Software Group By tblSoftware.softwareName, tblSoftware.softwareVersion Order By Count(tblComputers.ComputerUnique) Desc
‎07-10-2012 01:18 AM
Rvgfox wanted to create a report listing anti-virus software installed in his network and have the anti-virus names link to lists of computers with any version of that software. This is not currently possible. You can only link to specific versions of a software package.
‎07-06-2012 01:19 AM
‎05-31-2012 04:04 PM
‎05-31-2012 01:59 PM
‎07-06-2012 07:31 PM
rvgfox wrote:
Ok it works, but I get a record by version.
Really I'm interesting in the software name, not in the version.
Is it possible make drill down in that way?
‎07-09-2012 07:07 PM
Norgenator wrote:rvgfox wrote:
Ok it works, but I get a record by version.
Really I'm interesting in the software name, not in the version.
Is it possible make drill down in that way?
This worked for me.. shows the SW Name.
‎05-31-2012 01:54 PM
Select Top (1000000) tblSoftware.softwareName As Software, tblSoftware.softwareVersion As Version, Count(tblComputers.ComputerUnique) As Equipos From tblComputers Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName, tsysantivirus Where tblSoftware.softwareName Like tsysantivirus.Software Group By tblSoftware.softwareName, tblSoftware.softwareVersion Order By Count(tblComputers.ComputerUnique) Desc
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now