In different situations, it might be necessary to clean up Process Monitoring (Activity Window) of CA Automic Workload Automation (AE / Automation Engine).
The cleanup is possible in two different ways:
The SQL statements delete all Tasks (Activities) specified in the sub-select. Therefore, it’s very important to use the same sub-select for all statements!
Be aware that manual deletion of Tasks causes the regular deactivation of these Tasks to be skipped. This has side effects, for example, there will be no Monitor for Workflows (JOBP) available, because the data is transferred to the statistic tables during deactivation.
With the sub-select, it’s possible to choose which Tasks you like to remove. Most common is to specify the client and the name of the Object. This is also used in the examples below.
Here some other fields sometimes used – in general, all fields of the EH table can be used if necessary:
Name | DB Field Name | Example |
---|---|---|
Client |
EH_CLIENT |
EH_CLIENT = 22 |
Task or Object Name
|
EH_NAME |
EH_NAME = 'SCRI.RUNFOREVER' |
RunID
|
EH_AH_IDNR |
EH_AH_IDNR = 1234567890 |
Task or Object Type
|
EH_OTYPE |
EH_OTYPE = 'JOBS' |
Status / Status Number
|
EH_STATUS |
EH_STATUS = 1572 |
Start Timestamp
|
EH_STARTTIME |
EH_STARTTIME < to_date ('2018-06-15 00:00:00', 'YYYY-MM-DD HH24:MI:SS') |
Agent
|
EH_HOSTDST |
EH_HOSTDST like 'WIN%' |
The different DB table fields are combined with “or” and “and”. Here an example:
(select EH_AH_IDNR from EH where EH_CLIENT = 22 and EH_OTYPE = 'JOBS' and EH_STATUS = 1572 and EH_STARTTIME < to_date ('2018-06-15 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and EH_HOSTDST like 'WIN%')
So, this one will select all Tasks which are in client 22, and have the Object type “JOBS”, and the status 1572 (“Generating”). The start of the Jobs must be before the 15th of June 2018, and the Jobs run on Agents with the name “WIN…” in the beginning.
Note: Timestamps in the database are in UTC.
Most important is to select the correct Tasks via the sub-select. If you are in doubt about that, just verify which Tasks will be affected. Use the sub-select created and add for example client, object type and name, and the RunID for the output. Here an example:
select EH_CLIENT, EH_OTYPE, EH_NAME, EH_AH_IDNR from EH where EH_CLIENT = 22 and EH_OTYPE = 'JOBS' and EH_STATUS = 1572 and EH_STARTTIME < to_date ('2018-06-15 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and EH_HOSTDST like 'WIN%';
The statements set the end date for the statistic record and for the reports to the current DB time. If a specific timestamp is necessary it is possible to remove SYSDATE and specify specific date and time.
Example:
Use to_date ('2018-06-15 00:00:00', 'YYYY-MM-DD HH24:MI:SS') instead of SYSDATE will set the end timestamp to 15th of June 2018, 00:00 AM.
Note: Timestamps in the database are in UTC.