* 268 schedules
Weekend Schedules
* In Plain English
Schedules that run only on Saturday and Sunday.
* Scheduling Guide
Weekend schedules target Saturday (day 6) and Sunday (day 0 or 7, depending on the cron implementation) to run jobs that are too resource-intensive or disruptive for weekday operation. Database reindexing, full system backups, and batch analytics reprocessing are common weekend tasks because they have hours of low-traffic time to complete without affecting business operations. The expression 0 2 * * 6,0 runs at 2 AM on Saturday and Sunday; 0 0 * * 6 runs only on Saturday. One common gotcha: some cron implementations treat Sunday as day 0, others as day 7 — both 0 2 * * 0 and 0 2 * * 7 represent Sunday in most Unix cron implementations, but always test against your specific scheduler to confirm.
15 14 * * 6,0 Every Saturday and Sunday at 2:15 PM
View details →30 1 * * 6,0 Every Saturday and Sunday at half past one in the morning
View details →45 1 * * 6,0 Every Saturday and Sunday at 1:45 AM
View details →45 2 * * 6,0 At 2:45 AM every Saturday and Sunday
View details →Related Topics
Report Generation
Schedules for generating and distributing automated reports and email digests.
1703 schedules
Monthly Schedules
Cron jobs that run once a month, typically for billing, reports, or archival.
980 schedules
Weekly Schedules
Cron jobs that run once a week on a specific day.
564 schedules