Click HERE to see how Saviynt Intelligence is transforming the industry. |
10/12/2023 05:23 AM
Hi ,
I need to pull the report of the all JObs and Trigger chain jobs(including name of sub jobs running) with cron schedule in the 5.5sp5 version for the backup.Please help in query.I have run below query
10/17/2023 12:18 AM
Hi @KG
We are currently in the process of reviewing the request mentioned above, and we would like to assure you that we will provide regular updates on its status.
10/18/2023 11:45 PM
Hi @KG,
I recommend considering the following approach to create your desired query:
```sql
SELECT jobid, triggername, jobname, jobstartdate, jobenddate, savresponse
FROM ecmimportjob
WHERE jobstartdate >= DATE_SUB(NOW(), INTERVAL 2 MONTH);
```
This query will yield sub-jobs within the trigger chain. Additionally, if you wish to retrieve running jobs, you can achieve this by joining the `triggername` from the `qrtz_fired_triggers` table with the `grtz_triggers` table, which will result in the desired outcome.
Please review this suggestion, and if you require any further assistance or have additional inquiries, please do not hesitate to reach out.
10/19/2023 05:09 AM
Thankyou for information but I want backup data for all Jobs running in the Saviynt (with Jobs name ,time and crons)
11/10/2023 06:48 AM
Hi @KG,
I am seeking to establish communication with you regarding this matter. I have initiated a private message to address the topic. Your attention and response to that message would be greatly appreciated.
12/03/2023 04:50 PM
Running Jobs - select * from qrtz_fired_triggers