Cron Expression schedule

Hi Everyone

I want to setup 3 jobs run at day 2 of every month ( such as: 02/01/2022, 02/02/2022, 02/03/2022, 02/04/2022ā€¦ ) with the time as below:

Job1: 09h30
Job2: 09h45
Job3: 10h

How to customize them in Cron Expression.

Thanks in advance!

1 Like

Hey @Mr.H

This will help you :slight_smile:

http://www.cronmaker.com/?1

Thanks
#nK

1 Like

Thanks you very much!

1 Like

Hi!

You have to create 3 triggers

Job1 Cron Expression: 0 30 9 2 1/1 ? *
Job2 Cron Expression: 0 45 9 2 1/1 ? *
Job3 Cron Expression: 0 0 10 2 1/1 ? *

Regards,
NaNi

1 Like

This would also work, just one expression:

0 0,30,45 9 2 * ? *

Iā€™m using below link to create CRON expressions:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.