Client Management Suite

 View Only
  • 1.  List of Software Products

    Posted Sep 08, 2016 11:23 AM

    We are going through migration and i would like to create a SQL report of all managed software products on all SMP and then the same on the new one to compare. 

    Can someone help with a query to pull a list of all managed software products?

    Thank you.



  • 2.  RE: List of Software Products

    Posted Sep 09, 2016 11:55 AM

    Here's the SQL Symantec uses to produce the list:

    --Software Products
    DECLARE @v1_TrusteeScope nvarchar(155)
       SET @v1_TrusteeScope = N'2e1f478a-4986-4223-9d1e-b5920a63ab41,582029e2-fc5b-4717-8808-b80d6ef0fd67,7091a13c-55c3-4e51-b164-8955ee25e1c2,b760e9a9-e4db-404c-a93f-aea51754aa4f'
    SELECT
       [vri2_Software Product].[Guid] AS [Guid],
       [vri2_Software Product].[Name] AS [Name],
       [ajs4_Inv_Software_Image].[ImageUrl] AS [Image Url],
       [ajs5_ra].[ResourceAssociationTypeGuid] AS [ResourceAssociationTypeGuid],
       [ajs6_vRM_Company_Item].[Name] AS [Manufacturer]
    FROM
       [vRM_Software_Product_Item] AS [vri2_Software Product]
          INNER JOIN [vAC_DeliverableSoftwareProducts] AS [ajs3_vAC_DeliverableSoftwareProducts]
             ON ([vri2_Software Product].[Guid] = [ajs3_vAC_DeliverableSoftwareProducts].[Guid])
          LEFT OUTER JOIN [Inv_Software_Image] AS [ajs4_Inv_Software_Image]
             ON ([vri2_Software Product].[Guid] = [ajs4_Inv_Software_Image].[_ResourceGuid])
          LEFT OUTER JOIN ([ResourceAssociation] AS [ajs5_ra]
             LEFT OUTER JOIN [vRM_Company_Item] AS [ajs6_vRM_Company_Item]
                ON ([ajs5_ra].[ChildResourceGuid] = [ajs6_vRM_Company_Item].[Guid]))
             ON ([vri2_Software Product].[Guid] = [ajs5_ra].[ParentResourceGuid])
                AND
                (
                   ([ajs5_ra].[ResourceAssociationTypeGuid] = 'd5c66d5a-7686-4ca2-b7c1-ac980576ce1d')  --Software Product to Company
                )
    ORDER BY
       [Name] ASC


  • 3.  RE: List of Software Products

    Posted Sep 09, 2016 03:04 PM

    Thank you, I though it would be much simpler, but that works!