Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • First Entry in RAC Oracle
  • Best approach for Oracle database patching sequence to latest/required patchset along with CPU/PSU/any-other-one-off patch ID 865255.1 Oracle
  • checking connectivity between two servers Linux/Unix
  • 10g RAC: Troubleshooting CRS Root.sh Problems Oracle
  • Exadata Basics Oracle
  • Alter procedure auditing Oracle
  • PLSQL Table Syntax 2 Oracle
  • Session_info.ksh Linux/Unix
  • All About Trace Fils Oracle
  • How can I tell if ASO is installed ? Oracle
  • Oracle Metalink useful notes Oracle
  • Convert multiple rows to single column Oracle
  • Monitor Long Running Job Oracle
  • Reading parameter file and printing Linux/Unix
  • New Latest Param.sql for finding all hidden parameters also 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

  • move_arch_files.ksh Linux/Unix
  • chk_space_SID.ksh Linux/Unix
  • To seee semaphores and shared memory segments in Solaris Linux/Unix
  • replacing ^M character when passing files from Windows to Unix Linux/Unix
  • send attachment from unix-shell script Linux/Unix
  • good linux notes 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 (393)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (0)
  • 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

  • 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
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Handling LOB data in Oracle Oracle
  • mutex in Oracle 10.2.0.2 or Oracle 10g Oracle
  • standard Monitoring – 1 Oracle
  • Convert multiple rows to single column Oracle
  • Roles and Stored Procs II Oracle
  • DETERMINING WHICH INSTANCE OWNS WHICH SHARED MEMORY & SEMAPHORE SEGMENTS Oracle
  • How to find password change date for user Oracle
  • process id based files and processes Linux/Unix

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme