I hope this is in the correct forum. If not will a mod please move it to the correct one.
I'm trying to create a SQL query that will show me the names and versions of all Adobe products installed in our environment. Honestly I was having a problem with the report builder so I went straight to the SQL query.
This is what I have right now.
Code:
SELECT DISTINCT description, publisher, version FROM dbo.application WHERE publisher LIKE 'Adobe%' AND description <> ''
This works fine and returns the information, but I can't figure out how to get a count of how many computers each application is installed on and perhaps the name of the computer. I have been unable to find the correct table holding that information.
I'm running NS 6.0 and appreciate any help you can offer.
Thanks in advance. Your help is appreciated.