This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Accept
Reject
  • RSA.com
  • Home
  • Advisories
    • SecurID
    • SecurID Governance & Lifecycle
  • Documentation
    • SecurID
      • Authentication Agents
        • API / SDK
        • Apache Web Server
        • Citrix StoreFront
        • IIS Web Server
        • MFA Agent for macOS
        • MFA Agent for Windows
        • Microsoft AD FS
        • Microsoft Windows
        • PAM
      • Authentication Engine
      • Authentication Manager
      • Cloud Authentication Service
      • Hardware Appliance
        Component Updates
      • Hardware Tokens
      • Integrations
      • SecurID App
      • SecurID Authenticator for macOS
      • SecurID SDK
      • Software Tokens
        • Android
        • iOS
        • macOS
        • Token Converter
        • Windows
    • SecurID Governance & Lifecycle
    • Technology Partners
  • Downloads
    • SecurID
      • Authentication Agents
        • API / SDK
        • Apache Web Server
        • Citrix StoreFront
        • IIS Web Server
        • MFA Agent for macOS
        • MFA Agent for Windows
        • Microsoft AD FS
        • Microsoft Windows
        • PAM
      • Authentication Engine
      • Authentication Manager
      • Cloud Authentication Service
      • Hardware Appliance
        Component Updates
      • Hardware Tokens
      • Integrations
      • SecurID Authenticator for macOS
      • Software Tokens
        • Android
        • iOS
        • macOS
        • Token Converter
        • Windows
    • SecurID Governance & Lifecycle
  • Community
    • SecurID
      • Blog
      • Discussions
      • Events
      • Idea Exchange
      • Knowledge Base
    • SecurID Governance & Lifecycle
      • Blog
      • Discussions
      • Events
      • Idea Exchange
      • Knowledge Base
  • Support
    • Case Portal
      • Create New Case
      • View My Cases
      • View My Team's Cases
    • Community Support
      • Getting Started
      • News & Announcements
      • Ideas & Suggestions
      • Community Support Articles
      • Community Support Forum
    • Product Life Cycle
    • Support Information
    • General Security Advisories
  • Education
    • Blog
    • Browse Courses
      • SecurID
      • SecurID Governance & Lifecycle
    • Certification Program
    • New Product Readiness
    • Student Resources
Sign In Register Now
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Search instead for 
Did you mean: 

SecurID® Governance & Lifecycle Knowledge Base

Find answers to your questions and identify resolutions for known issues with knowledge base articles written by SecurID Governance & Lifecycle experts.
  • SecurID Community
  • :
  • Products
  • :
  • SecurID Governance & Lifecycle
  • :
  • Knowledge Base
  • :
  • Queries to detect workflows and change requests that could overload the Workpoint Server in RSA Iden...
  • Options
    • Subscribe to RSS Feed
    • Bookmark
    • Subscribe
    • Email to a Friend
    • Printer Friendly Page
    • Report Inappropriate Content

Queries to detect workflows and change requests that could overload the Workpoint Server in RSA Identity Governance & Lifecycle

Article Number

000038546

Applies To

RSA Product Set: RSA Identity Governance & Lifecycle
RSA Version/Condition: 7.1.0, 7.1.1, 7.2.0
 

Issue

There have been issues reported in RSA Identity Governance & Lifecycle regarding aberrant change requests and workflows. See the following related RSA Knowledge Base Articles:
  • 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
This RSA Knowledge Base Article describes some SQL queries to detect when a change request or workflow is growing in size to the point where it may overload the Workpoint server. These queries are meant as monitoring tools to prevent the issues described in the above articles from occurring. This is particularly true on versions of RSA Identity Governance & Lifecycle prior to 7.1.1 P04.
 

Resolution

Here are two queries to execute as avuser:
  1. 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;
  1.   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;

 
Tags (58)
  • 7
  • 7.1
  • 7.1 Service Pack 1
  • 7.1 SP1
  • 7.1.0
  • 7.1.0.x
  • 7.1.1
  • 7.1.1.x
  • 7.1.x
  • 7.2
  • 7.2.0
  • 7.2.0.x
  • 7.2.x
  • 7.x
  • Admin
  • Admin Tutorial
  • Administration
  • Administrative
  • Aveksa
  • Customer Support Article
  • Helpful Hints
  • How To
  • Identity
  • Identity G&L
  • Identity Governance & Lifecycle
  • Identity Governance and Lifecycle
  • IG&L
  • IGL
  • Informational
  • Instructions
  • KB Article
  • Knowledge Article
  • Knowledge Base
  • management
  • Process Steps
  • RSA Identity
  • RSA Identity G&L
  • RSA Identity Governance & Lifecycle
  • RSA Identity Governance and Lifecycle
  • Tip &amp Tricks
  • Tips and Tricks
  • Tutorial
  • Version 7
  • Version 7.1
  • Version 7.1.0
  • Version 7.1.0.x
  • Version 7.1.1
  • Version 7.1.1.x
  • Version 7.1.x
  • Version 7.2
  • Version 7.2.0
  • Version 7.2.0.x
  • Version 7.2.x
  • Version 7.x
  • Walk Through
  • Walkthrough
  • Workflow
  • Workflows
0 Likes
Was this article helpful? Yes No
Share
No ratings

In this article

Version history
Last update:
‎2021-04-24 01:10 AM
Updated by:
Administrator RSA-KB-Sync Administrator

Related Content

Powered by Khoros
  • Blog
  • Events
  • Discussions
  • Idea Exchange
  • Knowledge Base
  • Case Portal
  • Community Support
  • Product Life Cycle
  • Support Information
  • Customer Success
  • About the Community
  • Terms & Conditions
  • Privacy Statement
  • Provide Feedback
  • Employee Login
© 2022 RSA Security LLC or its affiliates. All rights reserved.