Here the script I use to verify all backup on all dbs on all instances.
I use it with the “db2-check-backup.sh” documented Here
#!/bin/sh UNIQUE=`date +%s` LPATH=$(pwd) INST=/tmp/instances.$UNIQUE OUT=/tmp/outallinst.$UNIQUE /opt/ibm/db2/V9.7/bin/db2ilist > $INST while read LN; do echo "###########" $LN >> $OUT $LPATH/db2-check-backup.sh $LN >>$OUT done < $INST cat $OUT rm $OUT rm $INST |