Originally posted by: SystemAdmin
Hi Guys,
I am administering a server which has a backup script writtent a while ago. I'm just doing a test recovery and can't seem to find the second data set.
I will start with the backup script.
#Get the list of directories to backup
APPSBACKUP_LIST="./orclprod.u01 ./orclprod.u02
#for each dir backup to tape
for BACKUP_LIST in ${APPSBACKUP_LIST}
do
find ${BACKUP_LIST} -print | backup -ivqf ${TAPE} >> ${LOGFILE}.${MOUNT}
done
My problem is i am now trying restore -Tvf /dev/rmt0.1 (the backup device) and it's only listing the first dir in the APPSBACKUP_LIST.
I tried fast forwarding the tape using tctl fsf 1 (or 2) (and fsr) and i get a end of file when running the retore command from there.
Are my backups working?
I have a bad feeling in my stomach :/
Thanks
P
#AIX-Forum