List of jobs running on the agent
search cancel

List of jobs running on the agent

book

Article ID: 254751

calendar_today

Updated On:

Products

CA Workload Automation DE CA Workload Automation DE - Business Agents (dSeries) CA Workload Automation DE - System Agent (dSeries)

Issue/Introduction

How to find the list of jobs that are being executed (currently running) on a specific agent in CA Workload Automation DE?
 
 

Environment

Release : 12.3

Resolution

In the current version of Workload Automation Dseries, there is no direct feature in the desktop client or a command line tool that provides a list of jobs being executed on the agent.

However, the following SQL query can be executed on the database to get the list of jobs -

select JOB_NAME from V_GENERIC_JOB where AGENT_NAME = '<AGENT-NAME>' and state = 'EXEC';

(Replace the <AGENT-NAME> with the name of agent machine)