Cron Tuesday at Midnight

0 0 * * 2

Every Tuesday at 12:00 AM

Next 10 Executions

Times shown in UTC

  • Tue, May 19, 202600:00
  • Tue, May 26, 202600:00
  • Tue, Jun 2, 202600:00
  • Tue, Jun 9, 202600:00
  • Tue, Jun 16, 202600:00
  • Tue, Jun 23, 202600:00
  • Tue, Jun 30, 202600:00
  • Tue, Jul 7, 202600:00
  • Tue, Jul 14, 202600:00
  • Tue, Jul 21, 202600:00

Field Breakdown

0
Minute
0
0
Hour
0
*
Day of Month
Every day
*
Month
Every month
2
Day of Week
Tue

About This Schedule

The cron expression 0 0 * * 2 fires at midnight on Tuesday — the very start of the day. This overnight timing is useful for tasks that should complete before Tuesday's business hours begin.

Common uses include post-Monday data aggregation, running overnight ETL jobs that process Monday's data, weekly database optimization tasks, and generating Tuesday morning reports. The midnight timing ensures a full processing window.

If midnight is too early and you want the job to run after business hours on Monday instead, consider 0 22 * * 1 (Monday at 10 PM) or 0 23 * * 1 (Monday at 11 PM).

Frequently Asked Questions