Stealth Audit Collector inserts duplicate records in RSA Identity Governance and Lifecycle
Originally Published: 2016-12-09
Article Number
Applies To
Issue
On trying to delete them, they will not get deleted.
In the screenshot below, we can see the erroneous entries.
They have an "=" sign and what looks to be a computer grid after it, and come up as offline.
Resolution
1) Run the following script in SQL management studio
--Script to delete hosts in the following format: host.test.com={8ED7CE93-2E2E-400F-90E3-EC88A24E34FB}
DECLARE @badHosts TABLE
(name varchar(64) not null ,hostid varchar(40) not null)
insert into @badHosts
select name, hostID
FROM SA_HostMasterTbl
WHERE [Name] LIKE '%={%}'
delete from [HostMaster_SANodeFilter]
where hostid in (select hostid from @badHosts)
delete from [HostListsContentTbl]
where hostid in (select hostid from @badHosts)
delete from [SA_HostMasterTbl]
where hostid in (select hostid from @badHosts)
2) or install the following job in the StealthAUDIT console to be able to run it whenever you need to :- http://downloads.stealthbits.com/access/files/Utilities/Jobs/JOB_FixHostInventoryState.zip
- right click jobs in StealthAUDIT
- extract the contents of the zip into the jobs tree (make sure there’s only one folder above the xmls – sometimes the extraction process creates a second)
- refresh the jobs tree in StealthAUDIT
- run job
Notes
2) As informed by Stealth Audit Support team, they do not have a root cause for this issue.
3) This issue will be resolved in 7.2 and later versions of StealthAUDIT.
Related Articles
Export of reports to a .csv file are blank in RSA Via Lifecycle & Governance 6.9.1 P12 31Number of Views AWS IAM Identity Center S3 - SAML My Page SSO Configuration - RSA Ready Implementation Guide 24Number of Views AWS IAM Identity Center CloudWatch - SAML Relying Party Configuration - RSA Ready Implementation Guide 8Number of Views How to enable or disable Audit Logging in RSA Identity Governance and Lifecycle 36Number of Views AWS IAM Identity Center CloudWatch - SAML My Page SSO Configuration - RSA Ready Implementation Guide 23Number of Views
Trending Articles
Quick Setup Guide - Passwordless Authentication in Windows MFA Agent for Active Directory RSA Authentication Manager 8.9 Release Notes (January 2026) Artifacts to gather in RSA Identity Governance & Lifecycle RSA Governance & Lifecycle 8.0.0 Administrators Guide RSA Governance & Lifecycle 8.0.0 Installation Guide
Don't see what you're looking for?