Oracle expdp 로 백업하기
2015.02.23 23:25
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
datapump 디렉토리 위치 지정
SQL> create or replace directory datapump as '/backup/expdp/';
system이 아닌 데이터 유저로 백업할 경우 해당 유저에 권한 부여.
SQL> grant connect,resource,exp_full_database, imp_full_database to <유저명>;
SQL> grant read,write in directory datapump to <유저명>;
백업스크립트 작성
#!/bin/ksh
#####################################
### ENV #############################
#####################################
# backup date
DATE=`date '+%Y%m%d'`
# backup destination
DEST=/backup/expdp
DMPFILE=${DATE}_full.dmp
LOGFILE=${DATE}_full.log
DP_DEST=datapump
# ORACLE ENV
export ORACLE_BASE=/oracle/app/oracle
export ORACLE_SID=ORCL
export ORACLE_HOME=$ORACLE_BASE/product/11.2.4
#####################################
#####################################
expdp system/manager full=y directory=${DP_DEST} dumpfile=${DMPFILE} logfile=${LOGFILE} job_name=full
sleep 1
gzip ${DEST}/${DMPFILE}
find ${DEST} -name *.gz -mtime +3 -exec rm {} \;
find ${DEST} -name *.log -mtime +3 -exec rm {} \;
attach mode 로 접속하기
$ expdp system/manager0 attach=full
Export>
- add_file : 덤프파일 추가
- exit : attach 모드 빠져나감
- kill_job : 해당 작업 종료(작업중인 파일도 삭제 됨)
- parallel : 병렬수행 프로세스 조정
- start_job : 중단되었던 job 재실행
- status : 현재 작업상태 보기
- stop_job : 해당 작업 일시중지