Backup with verify on a multiple DB scheduled job....
designtoscano
Posts: 10
The option to verify isn't available. Is this by design? If I alter the script to perform a verify, will it have a negative impact in some way?
Comments
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
Sure! You can put a RESTORE VERIFYONLY in a SQL Agent job:
exec master..sqlbackup '-SQL "RESTORE VERIFYONLY FROM DISK=[file]"'
You would need to include some sort of RAISERROR or notification in the script so you know that the verify raised an error.