Introduction to the cron

Many processing jobs, particularly those batch jobs affecting the database, need to be scheduled to run at quieter periods.  Some need to be run at regular intervals throughout the working day. The UNIX system process known as cron can be used to automate repetitive tasks.

Cron is a system facility that enables you to schedule the regular or repetitive execution of operations on a time and date basis. Cron is started automatically at system boot. You can also use it to automate daily or weekly operations such as backup and disk clean-up.

Note

An alternative solution is to use the UNIX command known as at, as this allows one-off jobs to be scheduled.