Queries to detect workflows and change requests that could overload the Workpoint Server in RSA Identity Governance & Lifecycle
Originally Published: 2020-03-09
Article Number
Applies To
RSA Version/Condition: 7.1.0, 7.1.1, 7.2.0
Issue
- 000038393 -- Change requests get randomly cancelled and add unrelated activities or continue to provision in RSA Identity Governance & Lifecycle
- 000038545 -- How to detect and rectify a workflow stalled and/or Workpoint server down situation in RSA Identity Governance & Lifecycle
Resolution
- Check the number of oversplit nodes created in the last seven days (modify the number of days to fit your situation):
select split_count, count(*) node_count from wp_proci_split_control where split_count > 2 and archive_id is null and lu_date >= trunc(sysdate - 7.0) -- Only check Split Nodes created in the last week group by split_count order by split_count desc;
- Find the worst offenders by using the SPLIT_COUNT (e.g. 2) from above to find the nodes:
select split_count as job_count, job.name as job_name, node.name as node_name, job.proci_id, job.proci_db, node.proci_node_id, node.proci_node_db from ( select proci_id,proci_db, proci_node_id, proci_node_db , split_count from wp_proci_split_control where split_count > 2 and lu_date >= trunc(sysdate - 7.0)) problemjobs join wp_proci job on job.proci_id = problemjobs.proci_id and job.proci_db = problemjobs.proci_db join wp_proci_node node on node.proci_node_id = problemjobs.proci_node_id and node.proci_node_db = problemjobs.proci_node_db;
Related Articles
Xudad core dumps randomly but when it does it is typically around 20 min or 50 min on the hour 5Number of Views Save button in workflow does not highlight to save the changes made in the approval node of RSA Identity Governance & Life… 18Number of Views How to write LDAP query filter in RSA ACE/Server for an LDAP Synchronization job 132Number of Views Review generation fails in RSA Via Lifecycle and Governance when double byte characters are in any of the display names de… 88Number of Views Performance Issues in Oracle 19c with Database Statistics in RSA Identity Governance & Lifecycle 386Number of Views
Trending Articles
Passwordless Authentication in Windows MFA Agent for Active Directory – Quick Setup Guide RSA Authentication Manager 8.9 Release Notes (January 2026) RSA Authentication Manager Upgrade Process RSA Authentication Manager 8.7 SP2 Setup and Configuration Guide An example of SSO using SAML and ADFS with RSA Identity Management and Governance 6.9.x
Don't see what you're looking for?