This is great software. I wish the report builder had a help tool of some kind in formulating SQL queries.
Here is my issue. I created a view of all servers in my domain using the view VIEW1. Now I want to report on all servers in my domain and report back if they have a certain software or not. I am not sure if this can be done.
I can get list of all servers containing software "XYZABC". But when do i not contain XYZABC I get all servers with listing of all software installed on them but not containing XYZABC. Is there a easier way to get this ?
SELECT
VIEW1.Computername,
VIEW1.BuildNumber,
VIEW1.Description,
VIEW1.InstallDate,
VIEW1.Manufacturer,
VIEW1.OSType,
VIEW1.ServicePackMajorVersion,
VIEW1.TotalVisibleMemorySize,
VIEW1.Domain,
VIEW1.DefaultIPGateway,
VIEW1.IPAddress,
tblSoftware.softwareName,
tblSoftware.softwareVersion
FROM
web30repMyMultiView VIEW1,
tblSoftware
WHERE
VIEW1.Computername = tblSoftware.Computername AND
tblSoftware.softwareName NOT LIKE 'XYZABC%'
Basically I am attempting to report on all the VIEW1 attributes plus report if software XYZABC is installed on the server or not.
Any help highly appreciated.
Cheers
NANJ