How to remove a decommissioned partner device from the Partners list on the RSA Data Loss Prevention Enterprise Manager GUI
Originally Published: 2015-11-20
Article Number
Applies To
RSA Product/Service Type: Enterprise Manager
RSA Version/Condition: 9.6 SP2
O/S Version: 2008 Server R2 Standard (64 bit)
Issue
Cause
Resolution
If the decommissioned device is unreachable, it must be removed from the list of partner devices in the RSA DLP Enterprise Manager (RSA_DLP_EM) SQL database via SQL commands.
CAUTION: It is recommended to take a database backup before performing the steps below.
Perform the following set of SQL queries to identify and delete the decommissioned device from the RSA_DLP_EM database:
1. On the Microsoft SQL server hosting the RSA_DLP_EM database, run the command below to find the device ID:
2. Remove the device_id row from the table:
3. Now find the full name of the device:
4. Remove the device row entry from the table:
5. Launch the Enterprise Manager web-interface and refresh the page. The decommissioned device will no longer be listed under the Partners tab.
CAUTION: It is recommended to take a database backup before performing the steps below.
Perform the following set of SQL queries to identify and delete the decommissioned device from the RSA_DLP_EM database:
1. On the Microsoft SQL server hosting the RSA_DLP_EM database, run the command below to find the device ID:
SELECT * FROM dbo.dv_device_status;
2. Remove the device_id row from the table:
DELETE FROM dbo.dv_device_status WHERE device_id='<the device_id row captured in the SELECT statement above>';
3. Now find the full name of the device:
SELECT * FROM dbo.dv_device;
4. Remove the device row entry from the table:
DELETE FROM dbo.dv_device WHERE name='<the device name captured in the SELECT statement above>';
5. Launch the Enterprise Manager web-interface and refresh the page. The decommissioned device will no longer be listed under the Partners tab.
Related Articles
RSA Ready Partner Program 39Number of Views FIM- Editing Partner Entity Shows Wrong Protocol 5Number of Views Ping Identity PingFederate 9.3 - Configure Bridge between RSA SecurID Access SAML IdP and Partner Service Providers Config… 14Number of Views RSA Governance & Lifecycle Partner Summary: Elementity 28Number of Views RSA Governance & Lifecycle Partner Summary: Herjavec Group (Previously Securience) 28Number of Views
Trending Articles
Passwordless Authentication in Windows MFA Agent for Active Directory – Quick Setup Guide RSA Authentication Manager Upgrade Process RSA Authentication Manager 8.9 Release Notes (January 2026) An example of SSO using SAML and ADFS with RSA Identity Management and Governance 6.9.x RSA Authentication Manager 8.8 Setup and Configuration Guide
Don't see what you're looking for?