Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Find execution plan from dba_hist_sql_plan for a specific SQL_ID and PLAN_HASH_VALUE fplan.sql Oracle
  • Very Good Oralce Internal Tuning Book Oracle
  • Removing Blank lines from file using grep Linux/Unix
  • How to sort list of files on basis of their sizes. Linux/Unix
  • Good RAC & Standby Notes Oracle
  • create user with unlimited quota Oracle
  • alter database backup controlfile to trace Oracle
  • Ports used by Oracle Software Oracle
  • chk_space_SID.ksh Linux/Unix
  • Find Multiple levels of object dependencies : depen.sql Oracle
  • TRUNCATE table and disabling referential constraints. Oracle
  • Explain Plan Output 2 Oracle
  • Getting started with notebook Python/PySpark
  • How to stop OCSSD Daemon Oracle
  • checking redhat linux version Linux/Unix

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

  • More info about /proc folder and its relation with processes. Linux/Unix
  • scripts to take listener.log backup Linux/Unix
  • send email from unix mailx with attachment. Linux/Unix
  • Kernel Parameters for Solaris Linux/Unix
  • avail.sh ( find filesystem spae usage) Linux/Unix
  • To seee semaphores and shared memory segments in Solaris 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
  • alter database backup controlfile to trace Oracle
  • Drop tempfiles from database Oracle
  • Implementing Listener Security Oracle
  • standard Monitoring – 1 Oracle
  • New Latest Param.sql for finding all hidden parameters also Oracle
  • cold backup scripts to copy locally Linux/Unix
  • useful dg links Oracle
  • Find_stale_dr.sql finding stale physical DR.. Oracle

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme