Microsoft Windows has a built in Task Scheduler.
With Scheduled Tasks, you can schedule any script, program, or document to run at a time that is most convenient for you.
Scheduled Tasks starts every time that you start Windows XP and runs in the background, and it starts each task that you schedule at the time that you specify when you create the task.
Batch files can also be scheduled.
Running database utilities to check data integrity on a large database can be time consuming. However this must be done on a regular basis.
The task scheduler running a batch file to check data integrity during off peak hours makes this convenient.
Database utilities creates a log file that can be checked the following morning for results.
See Database Utilities for more.
A batch file consisting of a single text line as shown below can perform two checks on the acme.nv2 database
c:\nv\nv2.exe -script system/database_utilities.qw_script ^ .command "check_block_readability check_index_record_integrity" ^ .file c:/nv/acme.nv2
Since the command line is quite long we broke it from one physical line into several
by using the batch file line continuation character, i.e. the "^" caret character.
See Batch Files for more.
To open Scheduled Tasks, click Start, click All Programs, point to Accessories, point to System Tools, and then click "Scheduled Tasks".
To schedule a new task: