Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Sujatha.Madan@optus.net.au
May not be elegant but it does the job.
# Find all new archive logs compared to last time script ran. Copy to backup directory
/usr/bin/find $ARCDIR/*.arc -newer $ARCDIR/timetest.txt -exec cp {}
$BACKUPDIR \;
# Delete the timetest file so that a new one can be created for new
timestamp.
/usr/bin/rm $ARCDIR/timetest.txt
/usr/bin/touch $ARCDIR/timetest.txt
# Gzip copied archive logs
/usr/bin/gzip $BACKUPDIR/*.arc
-----Original Message----- From: ml-errors_at_fatcity.com [mailto:ml-errors_at_fatcity.com] On Behalf Of Chris Stephens Sent: Thursday, 9 October 2003 2:40 AM To: Multiple recipients of list ORACLE-L Subject: Sujatha.Madan_at_optus.net.au I've been looking to do this for a while...would you mindsharing the script??
Thanks either way!!
chris
-----Original Message----- From: Sujatha Madan [mailto:Sujatha.Madan_at_optus.net.au] Sent: Tuesday, October 07, 2003 11:29 PM To: Multiple recipients of list ORACLE-L Subject: IGNORE: Unix Help Sorry ... but I solved it. Cheers Sujatha -----Original Message----- From: ml-errors_at_fatcity.com [mailto:ml-errors_at_fatcity.com] On Behalf Of Sujatha Madan Sent: Wednesday, 8 October 2003 1:24 PM To: Multiple recipients of list ORACLE-L Subject: Unix Help Hi, Sorry for the slightly non-Oracle post. I am after a UNIX code snippet that will help me copyarchive logs to another directory BUT not if they already exist. So if only 2 archive logs are generated between script runs only the two new ones should copy. I know I can do this using sysdate - "time interval" but I am trying to avoid that.
Thanks in advance,
Sujatha Madan.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Sujatha Madan INET: Sujatha.Madan_at_optus.net.au Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Oct 08 2003 - 19:09:24 CDT