Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Script for deleting old archive logs from NT
Arun,
Here are a couple of files (a .bat and .sql) that let me maintain a constant number of Archived Redo Logs online.
The first batch file executes SQL*Plus to produce two other batch files to delete the excess logs and move some others, maintaining, in this case about 450 logs. It ran every hour - smooth as silk.
Hope it helps.
Archived_Redo_Logs_MoveDelete_main.bat
SQLPlus internal @C:
\Oracle\Admin\orcl\Archived_Redo_Logs_MoveDelete_sub.sql
Call C:\Oracle\Admin\orcl\Archived_Redo_Logs_MoveDelete_delete.bat Call C:\Oracle\Admin\orcl\Archived_Redo_Logs_MoveDelete_move.bat
Archived_Redo_Logs_MoveDelete_sub.sql
Spool C:\Oracle\Admin\orcl\Archived_Redo_Logs_MoveDelete_delete.bat
Select 'Del T:\Oracle\OraData\orcl\Archive_Backup\ARC' || Trim(v.Seq) ||
'.LOG'
>From (
Select To_Char(Sequence#,'09999') Seq From v$Log_History Order By Sequence# Desc ) v
Select To_Char(Sequence#,'09999') Seq From v$Log_History Order By Sequence# Desc ) v
Spool Off
Spool C:\Oracle\Admin\orcl\Archived_Redo_Logs_MoveDelete_move.bat
Select 'Move U:\Oracle\OraData\orcl\Archive\ARC' || Trim(v.Seq) || '.LOG T:
\Oracle\OraData\orcl\Archive_Backup'
>From (
Select To_Char(Sequence#,'09999') Seq From v$Log_History Order By Sequence# Desc ) v
Select To_Char(Sequence#,'09999') Seq From v$Log_History Order By Sequence# Desc ) v
Spool Off
Exit
Jack C. Applewhite
Database Administrator
Austin Independent School District
Austin, Texas
512.414.9715
JApplewhite_at_austin.isd.tenet.edu
Arun Chakrapani To: Multiple recipients of list ORACLE-L <ArunC_at_1800FLO <ORACLE-L_at_fatcity.com> WERS.com> cc: Sent by: Subject: Script for deleting old archive logs root_at_fatcity.c from NT om 05/15/2002 04:43 PM Please respond to ORACLE-L
Does anybody has script to delete old archive logs on NT when the disk
reaches certain percentage.
Please let me know
Thanks
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Arun Chakrapani INET: ArunC_at_1800FLOWERS.com -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: JApplewhite_at_austin.isd.tenet.edu 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 may also send the HELP command for other information (like subscribing).Received on Thu May 16 2002 - 07:43:19 CDT
![]() |
![]() |