Skip to main content
Question

Need a report containing list of assets having no managed account

  • February 14, 2025
  • 3 replies
  • 53 views

Chitta2019
Forum|alt.badge.img+3

Need a report containing list of assets having no managed account

3 replies

Paulo144
Forum|alt.badge.img+5
  • Veteran
  • February 14, 2025

Hi, 

 

You can either open a ideia to create such report or use API to collect this information and transform in a csv


  • BeyondTrust Employee
  • February 14, 2025

@Chitta2019 Is this on-prem Password Safe? If so, the following SQL query will provide this information:

USE RetinaCSDatabase
GO

SELECT ms.ManagedSystemID, ms.Name
FROM pmm.PmmManagedSystem ms
WHERE ms.ManagedSystemID NOT IN (
    SELECT DISTINCT ma.ManagedSystemID
    FROM pmm.PmmManagedAccount ma
);

 


Chitta2019
Forum|alt.badge.img+3
  • Author
  • Trailblazer
  • February 15, 2025

Hi ​@droache It’s SAAS based