Client Management Suite

 View Only
  • 1.  Active Manage Delivery Policies

    Posted Aug 10, 2017 01:32 PM

    Looking for a SQL query or report that shows all the running (active) manage delivery policies.



  • 2.  RE: Active Manage Delivery Policies

    Broadcom Employee
    Posted Aug 11, 2017 03:55 AM

    Here is simple query to see all available enabled Items in your database

    SELECT
    ia.Guid,
    i.Name,
    ia.Enabled,
    i.CreatedBy,
    i.CreatedDate,
    i.ModifiedBy,
    i.ModifiedDate

    FROM ItemActive ia
    JOIN Item i
    ON i.Guid = ia.Guid
    WHERE ia.Enabled = 1
    ORDER  BY i.Name
    ASC



  • 3.  RE: Active Manage Delivery Policies

    Posted Aug 29, 2017 10:53 AM

    To piggy-back off of Igor's comment, this can help narrow it down a bit more. Notice I did not include 'ia.Enable = 1'. You can add this into the where clause if needed to find active. Otherwise, the Enabled column will be 1 for enabled and 0 for disabled.

    select ia.Guid,
    	i.name,
    	ia.Enabled,
    	i.CreatedBy,
    	i.CreatedDate,
    	i.ModifiedBy,
    	i.ModifiedDate
    from item i
    left join itemactive ia
    	on ia.guid = i.guid
    where ProductGuid = 'AD3F5980-D9E9-11D3-A318-0008C7A09198' --Software Management Solution 8.1 RU1
    	and ia.guid is not null
    	and i.name != ''
    order by i.name asc
    

     



  • 4.  RE: Active Manage Delivery Policies

    Posted Aug 29, 2017 10:58 AM

    To piggy-back off of Igor's comment, this can help narrow it down a bit more. Notice I did not include 'ia.Enable = 1'. You can add this into the where clause if needed to find active. Otherwise, the Enabled column will be 1 for enabled and 0 for disabled.

    select ia.Guid,
    	i.name,
    	ia.Enabled,
    	i.CreatedBy,
    	i.CreatedDate,
    	i.ModifiedBy,
    	i.ModifiedDate
    from item i
    left join itemactive ia
    	on ia.guid = i.guid
    where ProductGuid = 'AD3F5980-D9E9-11D3-A318-0008C7A09198' --Software Management Solution 8.1 RU1
    	and ia.guid is not null
    	and i.name != ''
    order by i.name asc