Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Which table has the job cron schedule

Mareetta
New Contributor III
New Contributor III

Could someone please guide here? which table has the scheduled job cron expression? Not the last run or next run but the schedule that we have put in (say, every 30 mins, every 1 day at 2 pm or the cron)

5 REPLIES 5

RakeshMG
Saviynt Employee
Saviynt Employee

Currently the requested details are not available on UI for access.

Following tables are available from UI to access.

qrtz_triggers Table

qrtz_job_details Table

qrtz_fired_triggers Table

https://docs.saviyntcloud.com/bundle/EIC-Database-Schema-Reference/page/Content/Database-Schema-Refe...

 

An enhancement request has been raised for same : https://ideas.saviynt.com/ideas/EIC-I-4322.
Request you to reach to CSM to get the enhancement request prioritized. 


​Regards

Rakesh M Goudar

Mareetta
New Contributor III
New Contributor III

It says no record found for EIC-I-4322

Darshanjain
Saviynt Employee
Saviynt Employee

Hi @Mareetta 

It is stored in qrtz_cron_triggers however you will not be able to view it in Data analyzer, you can check in analytics.

select TRIGGER_GROUP,TRIGGER_NAME,CRON_EXPRESSION from qrtz_cron_triggers;

 

Thanks

Darshan

sk
All-Star
All-Star

You can find that information in qrtz_cron_triggers table under column cron_experssion.

But Qrtz tables are not visible/accessible from Data Analyzer you need to run it from analytics

sk_0-1678462809337.png

 


Regards,
Saathvik
If this reply answered your question, please Accept As Solution and give Kudos to help others facing similar issue.

Mareetta
New Contributor III
New Contributor III

Thank you @sk @Darshanjain