Below I have pasted my code in. I'm trying to get a report on the versions of 2 different software apps. 1 is Symantec and the other is our TSM backup. Some or both might not have the software installed. That is 1 thing I'm looking for also. The problem I'm running into is if for example TSM is not installed on a server, the server in not even on the report. I would like to see all servers even if the software is not installed.
Appreciate your help.
Select Top 1000000 tblComputers.Computer, tblComputers.Domain,
tblSoftware.softwareVersion As [TSM Version], tblSoftware1.softwareVersion As
[Symantec Version]
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Inner Join
tblSoftware tblSoftware1 On tblComputers.Computername =
tblSoftware1.ComputerName
Where tblSoftware.softwareName = 'IBM Tivoli Storage Manager Client' And
tblSoftware1.softwareName = 'Symantec Endpoint Protection'
Order By tblComputers.Computer