Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/28/2024 06:29 AM
How to extract all jobs with description in job control panel
Solved! Go to Solution.
08/28/2024 07:01 AM
SELECT trigger_name AS 'Job Trigger Name',
job_group,
trigger_state,
From_unixtime(t.next_fire_time / 1000) AS 'Next Trigger Date',
Week(From_unixtime(t.next_fire_time / 1000)) AS 'Next Trigger Week',
Count(*) AS 'Trigger Count'
FROM qrtz_triggers t
WHERE t.next_fire_time != 4070945700000
AND From_unixtime(t.next_fire_time / 1000) > Sysdate()
GROUP BY trigger_name,
job_group,
trigger_state,
'NextTrigger Date',
'Next Trigger Week';
08/28/2024 07:22 AM
Getting the error while running the query. Saviynt version is 24.4
How to extract total created jobs with Job name, job description, schedule trimmings etc.
08/28/2024 07:24 AM
08/28/2024 07:59 AM
i am able to run the query from Analytics.
1. getting only job with waiting Trigger_State, Please include all the jobs from Job Control Panel
2. is the qrtz_triggers table available in Data analyzer
2. is
08/28/2024 08:09 AM
2. is the qrtz_triggers table available in Data analyzer _ NO
08/28/2024 10:14 AM
@Saviyntreh ✅Please click the 'Accept As Solution' button on the reply (or replies) that best answers your original question and hit 'Kudos' button 👍.
08/28/2024 09:36 AM - edited 08/28/2024 09:36 AM
Hi @Saviyntreh ,
use this
SELECT qt.trigger_name, qt.trigger_state, qt.DESCRIPTION, From_unixtime(qt.next_fire_time / 1000) as next_fire_time
FROM qrtz_triggers qt
WHERE
group by qt.trigger_name
qrtz_triggers table is not exposed in data analyzer but you can fins details here - https://docs.saviyntcloud.com/bundle/EIC-Database-Schema-Reference/page/Content/Database-Schema-Refe...
08/28/2024 11:32 AM
you can check ecmimportjob table
Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.