How, with a SQL query, can I get a list of all the Software Delivery packages in the Software Delivery Library or just those in a specific Software Group?
Client Automation
Software Delivery
Microsoft SQL Server
To list all the packages in the Software library you can run:
use mdb
select distinct itemname, itemversion, objectid from usd_rsw
To list all the software packages that are members of a Software Group, for example "Patch Management", you can run:
use mdb
select distinct itemname, itemversion, objectid from usd_rsw inner join (select sw from usd_link_swg_sw where swg in (select objectid from usd_swfold where name = 'Unicenter Patch Management Packages')) as t1 on t1.sw=objectid order by itemname