DB 종료 후 전체 파일을 백업 받는 방식


특징


모든 파일은 동일한 SCN을 가져야 함. 즉 shutdown 시점이 같이야 함.


또한 정상적으로 종료해야 함.


아카이브, 노아카이브 모두 사용 가능


datafile, redo log, control file 모두 가능


   


실습


# 데이터 파일 조회


set lines 300


set pages 1000


col name for a70


select name, status from v$datafile ;


   



   


# 리두로그 파일 조회


select a.group# , a.member , b.bytes/1024/1024 MB , b.archived , b.status


from v$logfile a , v$log b


where a.group#=b .group#


order by 1,2 ;


   



   


# 컨트롤파일 조회


select name from v$controlfile ;


   



   


# DB 종료


shutdown immediate



   


# 데이터파일 백업



   



# 리두로그 파일 백업



   


# 컨트롤파일 백업



   


# 확인



   


# DB 기동


startup



   

By haisins

오라클 DBA 박용석 입니다. haisins@gmail.com 으로 문의 주세요.

One thought on “오라클 콜드백업”
  1. You actually make it seem so easy with your presentation but I find
    this topic to be really something which I think I would never understand.

    It seems too complex and extremely broad for me.
    I’m looking forward for your next post, I will try to get the hang of it!

답글 남기기

이메일 주소를 발행하지 않을 것입니다. 필수 항목은 *(으)로 표시합니다