Client Management Suite

 View Only
  • 1.  Sql querry for Altiris report

    Posted Apr 03, 2013 09:06 AM

    I need sql querry for software installation report with date wise

     



  • 2.  RE: Sql querry for Altiris report



  • 3.  RE: Sql querry for Altiris report

    Posted Apr 04, 2013 01:54 AM

    Hello Manish,

    I need software installation report with IP address. Please help.\

     

    Prakash Soni



  • 4.  RE: Sql querry for Altiris report
    Best Answer

    Posted Apr 04, 2013 02:50 AM

    try this querry

     

     

    DECLARE @v1_TrusteeScope nvarchar(max)
    SET @v1_TrusteeScope = N'%TrusteeScope%'

    SELECT DISTINCT comps.Guid [Guid]
                   ,comps.Name [Computer Name]
                ,sci.[Name]
                ,isc.[Version]
                ,company.[Name] [Company]
    ,Inv_AeX_AC_TCPIP.[Ip Address]

    FROM vRM_Software_Component_Item sci
    JOIN Inv_InstalledSoftware inst
       ON inst._SoftwareComponentGuid = sci.[Guid]
       AND inst.InstallFlag = 1

    JOIN (SELECT vci.Guid, vci.Name
          FROM vRM_Computer_Item vci
          LEFT JOIN ResourceAssociation resAssoc
             ON vci.Guid = resAssoc.ParentResourceGuid
          AND resAssoc.ResourceAssociationTypeGuid = '3028166F-C0D6-41D8-9CB7-F64852E0FD01' --Asset Status
          WHERE (resAssoc.ChildResourceGuid = '0A0203A5-D2B6-49f1-A53B-5EC31A89437C' OR resAssoc.ChildResourceGuid IS NULL) -- ONLY Active Computers
          AND vci.Guid IN (SELECT ResourceGuid from ScopeMembership WHERE ScopeCollectionGuid IN(SELECT ScopeCollectionGuid FROM fnGetTrusteeScopeCollections (@v1_TrusteeScope))) 
          ) comps
       ON comps.Guid = inst._ResourceGuid

    JOIN Inv_AeX_AC_TCPIP
    ON Inv_AeX_AC_TCPIP.[Host Name]=comps.Name

    JOIN dbo.Inv_Software_Component isc
       ON isc._ResourceGuid = sci.[Guid]
    LEFT JOIN (SELECT vc.Name, ra.ParentResourceGuid AS SoftCompGuid
               FROM RM_ResourceCompany vc
         JOIN ResourceAssociation ra
         ON vc.Guid = ra.ChildResourceGuid
         AND ra.ResourceAssociationTypeGuid = '292DBD81-1526-423A-AE6D-F44EB46C5B16')company
       ON company.SoftCompGuid = sci.[Guid]

     



  • 5.  RE: Sql querry for Altiris report

    Posted Apr 05, 2013 02:26 AM

    thx sachin, I have checked this querry on my Altiris console. It can fetch the result as I need.

    Thank you very much.

     

    Prakash Soni



  • 6.  RE: Sql querry for Altiris report

    Posted Apr 05, 2013 02:53 AM

    Hello Sachin, 

    Nice querry....cool querry Thumbsup!!!!!!