‎03-14-2011 12:32 PM
‎03-15-2011 11:18 AM
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblComputers.LastknownIP, tblsoftware.softwareName
From tblComputers Inner Join
tblsoftware On tblsoftware.ComputerName = tblComputers.Computername
Where (tblsoftware.SoftwarePublisher Like 'ibm%') Or
(tblsoftware.softwareName Like '%ibm%')
‎03-14-2011 02:43 PM
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblComputers.LastknownIP, tblsoftware.softwareName
From tblComputers Inner Join
tblsoftware On tblsoftware.ComputerName = tblComputers.Computername
Where tblsoftware.SoftwarePublisher Like 'ibm%'
‎03-14-2011 01:14 PM
‎03-14-2011 01:49 PM
Ty on fast reply & solution, but are the servers also included in this report becouse i can see in others reports there are IBM sw products on them but they didnt included in this report (so pls extend search on all devices).
And if you could add columns in that report with computer name and ip per each application found ( than ill do total manually, more important is to identify device), ty vm and sry for trouble.
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblComputers.LastknownIP, tblsoftware.softwareName
From tblComputers Inner Join
tblsoftware On tblsoftware.ComputerName = tblComputers.Computername
Where tblsoftware.SoftwarePublisher Like 'ibm%'
‎03-14-2011 12:40 PM
Select tblsoftware.SoftwarePublisher, tblsoftware.softwareName,
Count(tblComputers.Computername) As Total
From tblComputers Inner Join
tblsoftware On tblsoftware.ComputerName = tblComputers.Computername
Group By tblsoftware.SoftwarePublisher, tblsoftware.softwareName
Having tblsoftware.SoftwarePublisher Like 'ibm%'
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now