Script for COLD Backup in Unix
Posted by Pavan DBA on March 8, 2012
###############
COLD BACKUP IN UNIX
###############
#!/bin/ksh
# —————————————————————————–
# — Description: Oracle Offline (Cold) Backup Job —
# — —
# — Instructions: —
# — 1) Create the following directories if not already setup: —
# — backups —
# — backups/common_scripts (For common scripts only – —
# — Do not change these scripts or add user scripts —
# — to this directory. Common scripts will be —
# — distributed from a master copy on a regular —
# — basis) —
# — backups/jobs —
# — backups/joblogs —
# — backups/adsmlogs —
# — backups/recv ( for recovery scripts generated) —
# — backups/scripts ( for userexit scripts) —
# — —
# — 2) Change variables below as needed —
# — —
# — 3) In the Main Section, uncomment the common functions —
# — you what executed —
# — —
# —————————————————————————
# ———— variables common to instance ——————————
ORACLE_HOME=/d001/oracle/9.2.0
LD_LIBRARY_PATH=$ORACLE_HOME/lib
ORACLE_SID=SDSS # oracle instance
ORACLE_ID=oracle # oracle id
HOSTNAME=`hostname` # hostname
BACKUP_DIR=/d002/oracle/$ORACLE_SID/backups # backup logs, scripts etc….
COMMON_DIR=/d002/oracle/common/backups # common scripts
UID=”system/systemSDSS” # userid/password for
# sqlplus queries
RETPRD=15 # how many days do you
# want to keep joblogs etc..
#SHUTDOWN_TIME_LIMIT=5 # max time (in minutes) allowed
# for a shutdown immediate
# before a shutdown abort is
# executed. Default is 5 min
ADSM_PROCESS_LIMIT=15 # max adsm processes
SLEEP_TIME=60 # sleep time after limits
#ADSM_SERVER=”-se=mvsosap” # adsm server – leave commented
# for default server
#MGMTCLASS=”-ARCHMc=UNIX_MGT” # adsm management class
# leave commented for default
#FROMNODE=”-fromnode=`hostname`” #adsm fromnode parameter –
# leave commented for default
#FROMOWNER=”-fromowner=`whoami`” #adsm fromowner parameter –
# leave commented for default
SQLDBA=”sqlplus” # use svrmgr for v7.3
INITDF=$ORACLE_HOME/dbs/init$ORACLE_SID.ora # init.ora to be copied
#CONFIGDF=$ORACLE_HOME/dbs/config$ORACLE_SID.ora # config.ora to be copied
# ———– sendtrap variables ——————————
SNDTRP_FLG=N # do you want to use
# sendtrap (Y,N)
# if you are using sendtrap
# change the following
# VARx’s to instruct
# operations what to do
VAR1=”….Cold Backup”
VAR2=$ORACLE_SID
VAR3=”Database is down – Qname= – contact oncall DBAORA”
VAR4=”Compress error – Qname= – contact oncall DBAORA”
VAR5=”Copy error – Qname= – contact oncall DBAORA”
VAR6=”ADSM error – Qname= – contact oncall DBAORA”
VAR7=”DB in hot bkup mode – Qname= – contact oncall DBAORA”
export COMMON_DIR ORACLE_HOME ORACLE_SID UID VAR1 VAR2 VAR3 VAR4 VAR5 VAR6 VAR7
export INITDF CONFIGDF BACKUP_DIR MGMTCLASS ADSM_SERVER RETPRD
export FROMOWNER FROMNODE ADSM_PROCESS_LIMIT SHUTDOWN_TIME_LIMIT
export ORACLE_ID HOSTNAME LD_LIBRARY_PATH
# ————————————————————————–
# ———– variables common to server ——————————
COLDBKUPDIR=$BACKUP_DIR/joblogs # backup df dest
ALRTPATH=/d002/oracle/$ORACLE_SID/dumpb # alert log path
TRCDIR=/d002/oracle/$ORACLE_SID/dumpu # trace file path
ARCHDIR=/d801/oracle/$ORACLE_SID/archive # archive log directory
DSMPATH=/usr/bin # dsmc command path
STPATH=/usr/local/bin # sendtrap command path
TMP=/tmp # temp path
export COLDBKUPDIR ALRTPATH TRCDIR ARCHDIR
export DSMPATH STPATH TMP
# —————————————————————————–
# ————— variables common to backup processes ————————
BKUP_JOB_LOGS=$BACKUP_DIR/joblogs # job log dest
BKUP_ADSM_LOGS=$BACKUP_DIR/adsmlogs # adsm log dest
BKUP_RECV_SCRIPTS=$BACKUP_DIR/recv # recov script dest
BKUP_RETR_SCRIPTS=$BACKUP_DIR/recv # adsm retr script dest
BKUP_COMMON_SCRIPTS=$COMMON_DIR/common_scripts # common script dest
CNTLTRC=$BACKUP_DIR/recv # cntl to trace dest
FILELST=$BKUP_JOB_LOGS # file list dest
DBF_LIST=$BKUP_JOB_LOGS # datafile only dest
# used for cloning
VERSION=prod # versions of the script:
# prod = production
# devl = development
# qlty = quality
EXIT_0=”$BACKUP_DIR/scripts/exit_0.sh” # exit 0 routine – successful
EXIT_4=”$BACKUP_DIR/scripts/exit_4.sh” # exit 4 routine – warning
EXIT_8=”$BACKUP_DIR/scripts/exit_8.sh” # exit 8 routine – error
USER_EXIT_1=”$BACKUP_DIR/scripts/usrexit1.sh” # user exit script dest
USER_EXIT_2=”$BACKUP_DIR/scripts/usrexit2.sh”
USER_EXIT_3=”$BACKUP_DIR/scripts/usrexit3.sh”
USER_EXIT_4=”$BACKUP_DIR/scripts/usrexit4.sh”
JDATE=`date +%y%j`
CTIME=`date +%HH%MM%SS`
export BKUP_JOB_LOGS BKUP_RECV_SCRIPTS BKUP_RETR_SCRIPTS BKUP_COMMON_SCRIPTS
export CNTLTRC FILELIST DBF_LIST VERSION EXIT_0 EXIT_4 EXIT_8
export JDATE CTIME USER_EXIT_1 USER_EXIT_2 USER_EXIT_3 USER_EXIT_4
# ————————————————————————–
# ————– Main Section ——————————————-
. $BKUP_COMMON_SCRIPTS/cold_$VERSION.sh # read in common functions
# ————————————————————————–
# —– Uncomment the functions below to be executed ———————–
param_set # set parameters for function – required
db_status # check database status
check_bkup_mode # check to see if database is in hot backup mode
arch_log_list # record current active log list in joblog
cntl_to_trace # backup current cntl file to trace, rename and
# archive to ADSM
#user_exit_1 # user exit routine
#move_alert_log # moves alert log to timestamped dataset
#dbfiles_for_cloning # create a list of database files for cloning
get_db_files # get files to backup
db_shutdown # shutdown database
#user_exit_2 # user exit routine
kill_db_con # kill any hung connections to database
#compress_df # compress files to backup directory
#copy_df # copy files to backup directory
adsm_df_dump # archive files to ADSM
#user_exit_3 # user exit routine
#rsh_db_startup # start database under a specified id (ORACLE_ID)
db_startup # start database
#adsm_df_dump # archive files in backup directory to ADSM
#user_exit_4 # user exit routine
cleanup_archive_dir # remove old archive logs from archive log directory
clean_up # clean up directorys
save_to_adsm # archive joblogs, alert logs, recovery scripts and
# filelist to ADSM
create_stats # generate statistics for this backup
exit_0 # exit routine – mail log to dba’s etc……
Leave a Reply