Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Ports used by Oracle Software Oracle
  • Distributed Transaction Troubleshooting. Oracle
  • 10g oem configuration Oracle
  • AWR license Oracle
  • shr1.sql for MTS or Shared server configuration Oracle
  • find_log_switch.sql Find log switches in graphical manner Oracle
  • column level grant syntax Oracle
  • Oracle GoldenGate lag monitoring shell script Linux/Unix
  • Changing default shell Linux/Unix
  • Find long Running Transaction Linux/Unix
  • DBMS_STATS Metalinks Notes Oracle
  • database trigger failing Oracle
  • RAC with RHEL4 and 11g Oracle
  • Histogram Overview Oracle
  • normal maintenance for exp-imp and renaming table Oracle

cold backup scripts to copy locally

Posted on 28-Oct-2009 By Admin No Comments on cold backup scripts to copy locally

==>cat SOX_BACKUP.ksh

#!/usr/bin/ksh

# +————————————————————————

# | Usage : ./SOX_BACKUP.ksh

# | Description : Cold Backup of Database. Automatically starts/stop the DB.

# +————————————————————————

. /export/home/oracle/FLRSTB.env

sqlplus -s /nolog << EOF > /mnt/ORACLEBACKUP/files.log

connect / as sysdba

set term off

set feedback off;

set head off;

set pagesize 150

select name||’ /mnt/ORACLEBACKUP/FLRPRD’ from v$datafile;

exit;

EOF

cat /mnt/ORACLEBACKUP/files.log|grep -v “Connected.” > /mnt/ORACLEBACKUP/files.dat

. /export/home/oracle/FLRSTB.env

sqlplus /nolog << EOF >> /mnt/ORACLEBACKUP/backup.log

connect / as sysdba

shutdown immediate;

exit;

EOF

echo “Backup Copy Started at :- `date` ” >>/mnt/ORACLEBACKUP/backup.log

nohup ./firecp.sh files.dat

echo “Backup Copy Ended at :- `date` ” >>/mnt/ORACLEBACKUP/backup.log

. /export/home/oracle/FLRSTB.env

sqlplus /nolog << EOF >> /mnt/ORACLEBACKUP/backup.log

connect / as sysdba

startup nomount;

alter database mount standby database;

exit;

EOF

oracle@sunrise*FLRSTB-/mnt/ORACLEBACKUP

==>

==>cat firecp.sh

#!/bin/ksh

# +————————————————————————

# | Usage : firescp.sh

# | filename – Flat file containing the operands for cp cmd

# | Description : Submits concurrent cp commands based on number of workers

# +————————————————————————

let WORKERS=5

LOGFILE=/mnt/ORACLEBACKUP/copy_dbfiles.log

while read -u3 CMDLINE

do

SRC_FILE=`echo ${CMDLINE}|awk ‘{print $1}’`

DST_FILE=`echo ${CMDLINE}|awk ‘{print $2}’`

echo “Now copying ${SRC_FILE} to ${DST_FILE}”|tee -a ${LOGFILE}

nohup /usr/bin/cp -p ${SRC_FILE} ${DST_FILE} 1>>${LOGFILE} 2>&1 &

sleep 1

while [[ `ps -ef|grep -v grep|grep “cp -p”|wc -l` -ge ${WORKERS} ]]

do

sleep 10

done

done 3<$1
wait

echo “SOX Copy of FLRPRD database is done”|mailx -s “Copy process done for FLRPRD on sunrise” bnair@1800flowers.com

Linux/Unix, shell

Post navigation

Previous Post: Oracle 10g for solaris 10
Next Post: process id based files and processes

Related Posts

  • crontab syntax Linux/Unix
  • Find long Running Transaction Linux/Unix
  • To seee semaphores and shared memory segments in Solaris Linux/Unix
  • chk_space_SID.ksh Linux/Unix
  • Jai Shree Ram Linux/Unix
  • Removing Blank lines from file using grep Linux/Unix

Leave a Reply Cancel reply

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

Categories

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

Recent Posts

  • load SPM baseline from cursor cache05-Jun-2025
  • Drop all SPM baselines for SQL handle05-Jun-2025
  • Load SPM baseline from AWR05-Jun-2025
  • Drop specific SQL plan baseline – spm05-Jun-2025
  • findinfo.sql (SQL for getting CPU and Active session info)27-May-2025
  • SQL Tracker by SID sqltrackerbysid.sql22-Apr-2025
  • How to connect to Oracle Database with Wallet with Python.21-Mar-2025
  • JSON/XML Types in Oracle18-Mar-2025
  • CPU Core related projections12-Mar-2025
  • Exadata Basics10-Dec-2024

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • pvm_rbs1.sql (to collect rbs info from db) Oracle
  • Oracle 10g for solaris 10 Oracle
  • Processes parameter and its dependencies on OS kernel parameters Linux/Unix
  • oracle 10g on linux Linux/Unix
  • Check Oracle installed products using one command Oracle
  • usnsql.sql Displays information about UNDO segments with sql statements Oracle
  • block_ident.sql Oracle
  • create a folder in multiple places Linux/Unix

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme