We have a daily maintenance plan in SQL Server 2005 that performs a full backup to disk using the "Back Up Database Task".
"Verify backup integrity" is enabled but from what I understand data integrity is only validated if the backup media contains a checksum, which is enabled by the "WITH CHECKSUM" option during the backup. I can see from generated T-SQL that the maintenance plan task does not create this so, apart from manually hacking the command's code, how do we specify this in the task (if it is indeed possible)?
Thanks