How to see the links between OS Images and Boot configurations using a SQL Query ?
Client Automation - Any versions
SELECT osimage.name,bootconfig.name
FROM csm_object osimage
INNER JOIN csm_link link ON link.child=osimage.id
INNER JOIN csm_object bootconfig ON link.parent=bootconfig.id and bootconfig.class=1004
where osimage.class=1008
order by 1