
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2010 12:39 AM
Hi
I was wondering if anybody could assist with the following request
I would like to generate a report for Software as per the following:
Publisher
Software Name
Version Number
Type: Server Software or Desktop Software (dont know if this is possible may need to get it manually)
Bit Type (32 bit or 64 bit) - I didnt see a table that had this information in it
Thanks!
I was wondering if anybody could assist with the following request
I would like to generate a report for Software as per the following:
Publisher
Software Name
Version Number
Type: Server Software or Desktop Software (dont know if this is possible may need to get it manually)
Bit Type (32 bit or 64 bit) - I didnt see a table that had this information in it
Thanks!
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2010 10:37 AM
Please use this sql
The last two fields you need are not available.
Select tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion, Count(tblSoftware.ComputerName) As Total
From tblSoftware
Group By tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion
Order By tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion
The last two fields you need are not available.
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2010 10:37 AM
Please use this sql
The last two fields you need are not available.
Select tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion, Count(tblSoftware.ComputerName) As Total
From tblSoftware
Group By tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion
Order By tblSoftware.SoftwarePublisher, tblSoftware.softwareName,
tblSoftware.softwareVersion
The last two fields you need are not available.
