Skip to main content
Chitta2019
Trailblazer
February 14, 2025
Question

Need a report containing list of assets having no managed account

  • February 14, 2025
  • 3 replies
  • 90 views

Need a report containing list of assets having no managed account

3 replies

Paulo144
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

Pulitros
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
Trailblazer
February 15, 2025

Hi ​@droache It’s SAAS based

Chittaranjan Kumar