Scheduling restore jobs > Select destination server and backups to restore > Select destination database > Specify file locations > Specify verification options > Configure restore options > Create restore schedule > Review summary

On step 4 of the wizard, select verification options for the restored database.

Verifying database integrity

Run database integrity check following restore (DBCC CHECKDB) is selected by default. A database integrity check verifies the logical and physical integrity of all the objects in the restored database. The command is included within the SQL Backup restore job.

Verifying backup files by restoring the database and checking its integrity is a recommended step in any disaster recovery plan. The results of the database integrity check are displayed in the Activity History and detailed in the log file.

You can add additional options to the integrity check, as follows:

Refer to your SQL Server documentation for more information about the DBCC CHECKDB command and additional options.

Dropping a database

You can specify that the database should be dropped as part of the restore job. This will remove the database from the SQL Server instance and delete the physical files used by the database.

Note: dropping the restored database will not delete the backup file. You can specify when a backup should be deleted using the Back Up wizard or Schedule Backup Jobs wizard.

Next: configure restore options