Find missing sequence files

Some of my archive logs were missing from my standby site; with this I found which was missing:

for nr in $(seq 1 5); do printf -v fle "*6493_841385922.dbf" ${nr}; if ! [ -e  "${fle}" ]; then echo "${fle}" missing; fi;  done

Leave Comment

Your email address will not be published. Required fields are marked *