Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Need script to copy and then truncate/tail alert log
Hi Cherie:
This is what we do once a week (oracle´s crontab):
#!/bin/ksh ############################################################################ ####
################################################################################
echo "ren_alert.sh Oracle_SID "
exit 1
fi
################################################################################
export ORACLE_HOME=/opt/oracle/product/8.1.6
export ORACLE_SID=$BD
PATH=/usr/bin:/usr/sbin:/usr/ucb:/etc:/opt/bin:.:$ORACLE_HOME/bin;
export PATH
sqlplus -s internal/ << FIN
set echo off
set pagesize 0
set head off
set verify off
set feedback off
set serveroutput off
spool /u00/app/oracle/admin/${BD}/scripts/renALERT.sh
PROMPT #!/bin/ksh
PROMPT
#######################################################################PROMPT # Renombra el alert de oracle
####################################################################### select 'cd /u00/app/oracle/admin/${BD}/bdump' from dual;select 'mv alert_' || substr(global_name,1,4) || '.log ' || ' ' || 'alert_' || substr(global_name,1,4) || to_char(sysdate, 'yyyymmdd') || '.log'
-- Alter system switch logfile / FIN exit 0 > -----Mensaje original----- > De: Cherie_Machler_at_gelco.com [SMTP:Cherie_Machler_at_gelco.com] > Enviado el: miércoles 26 de julio de 2000 17:41 > Para: Multiple recipients of list ORACLE-L > Asunto: Need script to copy and then truncate/tail alert log > > Does anyone have a script that will copy over and then truncate or tail (I > can't > remember if it's tail) > the alert log? Or something appropriate to keep our alert log to a day's > worth > of log information while > keeping the file in the same directory (hopefully with a datestamp in the > old > log file name). Then we > want to clean out the old log files on a weekly or daily basis. > > Thanks in advance for any help. > > Cherie > > > -- > Author: > INET: Cherie_Machler_at_gelco.com > > Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California -- Public Internet access / Mailing Lists > -------------------------------------------------------------------- > 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 mayReceived on Wed Jul 26 2000 - 10:14:11 CDT
![]() |
![]() |