Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • ENQ: KO – FAST OBJECT CHECKPOINT tips Oracle
  • Export Import with QUERY Oracle
  • avail.sh ( find filesystem spae usage) Linux/Unix
  • Committing distributed transaction using commit force Oracle
  • How to check current redo log progress redo_progress.sql Oracle
  • changing kernel parameter in Oracle Enterpise Linux Linux/Unix
  • Check_recovery.sh program to run sqlplus and return its values remotely. Linux/Unix
  • For Search and replace unix command. Linux/Unix
  • How To Resolve Stranded DBA_2PC_PENDING Entries ID 401302.1 (Very Good prooven) Oracle
  • Gathering statistics with DBMS_STATS Oracle
  • Finding Oracle Patches with opatch Oracle
  • Search and Replace vi editor command. Linux/Unix
  • dbms_job.submit example Oracle
  • tblwopk.sql tablewopk.sql Oracle
  • Default User Profile Oracle

remove archfiles only when it is applied to DR rm_archfiles.sh

Posted on 08-Jul-2009 By Admin No Comments on remove archfiles only when it is applied to DR rm_archfiles.sh

echo “script execution starts at `date`”

echo “COMFORT_SPACE=$COMFORT_SPACE”

echo “ARCH_DEST=$ARCH_DEST”

echo “ALERT_LOG=$ALERT_LOG”

ARCH_SPACE=`df -k $ARCH_DEST | tail -1 | awk ‘{print $5}’ | sed ‘s/%//g’`

echo “ARCH_SPACE=$ARCH_SPACE”

STDBY_LAST_RECOVERED_FILE=`grep “Media ” $ALERT_LOG |grep -v grep|grep “arch” | tail -1 | sed -e ‘s#^.*/##g’ `

echo “STDBY_LAST_RECOVERED_FILE=$STDBY_LAST_RECOVERED_FILE”

STDBY_LAST_RECOVERED_NUMBER=`grep “Media ” $ALERT_LOG |grep -v grep|grep “arch” | tail -1 | sed -e ‘s#^.*/##g’ |sed -e ‘s|[^0-9]||g’ `

echo “STDBY_LAST_RECOVERED_NUMBER=$STDBY_LAST_RECOVERED_NUMBER”

STDBY_SAFE_NUMBER=`expr $STDBY_LAST_RECOVERED_NUMBER – 5`

echo “STDBY_SAFE_NUMBER=${STDBY_SAFE_NUMBER}”

TOTAL_FILES_REMOVED=0

echo “The script execution started at `date`”

while [ ${ARCH_SPACE} -ge ${COMFORT_SPACE} ]

do

echo “At the Start-of-loop ARCH_SPACE=${ARCH_SPACE} and COMFORT_SPACE=${COMFORT_SPACE}”

FIRST_FILE=`ls -latr $ARCH_DEST/*.arc|head -1|awk ‘{print $9}’`

ONLY_FILE_NAME=`echo $FIRST_FILE | awk -F”/” ‘{print $NF}’`

SOURCE_FILE_NUMBER=`echo $ONLY_FILE_NAME | awk -F”/” ‘{print $NF}’ | sed -e ‘s|[^0-9]||g’`

echo “FIRST_FILE=${FIRST_FILE} ONLY_FILE_NAME=${ONLY_FILE_NAME} SOURCE_FILE_NUMBER=$SOURCE_FILE_NUMBER”

if [ ${SOURCE_FILE_NUMBER} -ge ${STDBY_SAFE_NUMBER} ]; then

echo “Issue: Cannot remove ${FIRST_FILE} from Standby `hostname`:${ARCH_DEST} as it is not applied to DR. Exiting…”

mailx -s “Blackberry: `hostname` : Archive File-System ${ARCH_DEST} space issue” $NOTIFY_LIST<Server: `hostname`

Issue: Cannot remove ${FIRST_FILE} from Standby `hostname`:${ARCH_DEST} as it is not applied to DR.

COMFORT_SPACE=${COMFORT_SPACE}% CURRENT_SPACE = ${ARCH_SPACE}%

DR: `hostname` Last Recovred File : ${STDBY_LAST_RECOVERED_FILE}

EOF

exit;

else

echo “removing the ${FIRST_FILE}…..”

rm ${FIRST_FILE}

echo “Removed ${FIRST_FILE} at `date`”

sleep 8

TOTAL_FILES_REMOVED=`expr $TOTAL_FILES_REMOVED + 1`

fi

sleep 8

ARCH_SPACE=`df -k $ARCH_DEST | tail -1 | awk ‘{print $5’} | sed ‘s/%//g’`

echo “At the End-of-loop ARCH_SPACE=${ARCH_SPACE} and COMFORT_SPACE=${COMFORT_SPACE}”

done

echo “Total files moved to $ARCH_DEST are ${TOTAL_FILES_REMOVED}”

echo “The script execution ended at `date`”

Linux/Unix, shell

Post navigation

Previous Post: run this before doing any dbchange pvm_pre_change.sql
Next Post: How to remove blank lines using vi editor command

Related Posts

  • note id 373303.1 Linux/Unix
  • send email from unix mailx with attachment. Linux/Unix
  • Find total file sizes Linux/Unix
  • Establishing trusted relationship between dbmonitor( central monitoring) and monitoring targets. Linux/Unix
  • get_vmstat.ksh Linux/Unix
  • adding new line after specific pattern using sed Linux/Unix

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (392)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (0)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (341)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025
  • MYSQL and Oracle Comparison for Oracle DBA24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Rman Notes -1 Oracle
  • Search and replace editor command in vi Linux/Unix
  • Pending Transaction Neighbors Script Oracle
  • How to choose Driver table in SQL statement Oracle
  • Committing distributed transaction using commit force Oracle
  • New OFA for 11g Oracle
  • How to hide author name in WordPress BLOG PHP/MYSQL/Wordpress
  • temp_use.sql diplays usage of temp ts Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme