0

I need a particular job to be run every 3hrs and 15 mins .

Will this expression serve my purpose ?

batch.backupscores.cronExpression=0 0/15 0/3 * * ?

thanks in advance .

Abhi
  • 6,471
  • 6
  • 40
  • 57

2 Answers2

0

No, this expression won't work and I believe you can't express this using Cron. But you can use simple trigger instead.

Running job every 195 minutes will work (3 * 60 minutes + 15).

Tomasz Nurkiewicz
  • 334,321
  • 69
  • 703
  • 674
0

0 15 0,3,6,9,12,15,18,21 * * ?

this will serve the purpose

Abhi
  • 6,471
  • 6
  • 40
  • 57