Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • SQL Server: How to see historical transactions SQL Server
  • plan10g.sql good Oracle
  • pvm_pre_change.sql Oracle
  • USE_NL and INDEX hints example Oracle
  • Find Multiple levels of object dependencies : depen.sql Oracle
  • TABLE SIZING WITH DB_BLOCK ARCHITECTURE Reference : Metalink note : 10640.1 Oracle
  • Implementing Listener Security Oracle
  • This is from Temi Oracle
  • get_aix_vmstat.ksh Oracle
  • checking connectivity between two servers Linux/Unix
  • ORACLE_SID in sqlplus Oracle
  • My Test Case On 21-OCT-2005 Oracle
  • How To Limit The Access To The Database So That Only One User Per Schema Are Connected (One Concurrent User Per Schema) Oracle
  • shr1.sql for MTS or Shared server configuration Oracle
  • Adding or Dropping Online Redo Log Files When Physical Standby in place 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: remove archfiles only when it is applied to DR rm_archfiles.sh
Next Post: How to remove blank lines using vi editor command

Related Posts

  • Validating ORACLE_SID againt oratab file. Linux/Unix
  • How to know Number of CPUs on Sun Box Linux/Unix
  • Logic to chech # of parameters command line parameters Linux/Unix
  • Removing Blank lines from file using grep Linux/Unix
  • Running some SQL on multiple databases connecting using monitoring userid and password Linux/Unix
  • age_alert.ksh aging out alert.log 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)
  • Django (0)
  • GIT (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (393)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (342)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • Complete Git Tutorial for Beginners25-Dec-2025
  • Postgres DB user and OS user.25-Dec-2025
  • Trace a SQL session from another session using ORADEBUG30-Sep-2025
  • 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

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Very clear article about oracle dataguard Oracle
  • longtx.sql Oracle
  • Oracle 11g Environment Setup Oracle
  • 339939.1 Running Cluster Verification Utility to Diagnose Install Problems Oracle
  • Changing the Global Database Name Oracle
  • send attachment from unix-shell script Linux/Unix
  • Optimizer_Index init.ora parameter explaination. Oracle
  • SQL Server Vs Oracle Architecture difference SQL Server

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme