|
-
get a file (filelst for example) with all the files you need to save :
control files
init file
datafiles
redo logs
any other file you need
then here is a skeleton of script to save your files (note : you can add log functionnalities, etc ...) :
------
# configure to match your device if DAT or DLT
BKUPDEVICE=/dev/rmt/0mn
cat filelst | while read FILENAME
do
LISTSVG="$LISTSVG $FILENAME"
done
find $LISTSVG | cpio -oxcvB > $BKUPDEVICE
------
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|