I need to do a cold backup of our Oracle Application instance to tape every night. It worked well until this weekend. What I did is:
1. shutdown the instance.
2. tar -cf /data/backup/oracle_bak.tar /oracle_base/*
3. compress oracle_bak.tar
4. tar -cf /dev/rmt/0c /data/backup/*
Before last week, the generated .Z file is 7.5G and there was no problem. But the database is growing and last weekend, the generated .Z file is 8.5G and I cannot tar it to the tape. No error message was given. Is there any OS limit of the tar command? This is emergency because if I can not tar it to tape, then I have to remove it from the disk to save space for another backup! Any suggestion is appreciated.
Thank you very much.
1. shutdown the instance.
2. tar -cf /data/backup/oracle_bak.tar /oracle_base/*
3. compress oracle_bak.tar
4. tar -cf /dev/rmt/0c /data/backup/*
Before last week, the generated .Z file is 7.5G and there was no problem. But the database is growing and last weekend, the generated .Z file is 8.5G and I cannot tar it to the tape. No error message was given. Is there any OS limit of the tar command? This is emergency because if I can not tar it to tape, then I have to remove it from the disk to save space for another backup! Any suggestion is appreciated.
Thank you very much.