RMAN CONTROLFILE 자동 백업 활성화
이 연습에서는 orcl 데이터베이스에서 백업을 수행할 때마다 컨트롤파일과 서버 파라미터 파일(SPFILE)을 백업하도록 RMAN 을 구성합니다.
1. RMAN 세션에서 CONTROLFILE 자동 백업이 활성화되었는지 확인합니다.
RMAN> show controlfile autobackup;
RMAN configuration parameters for database with db_unique_name ORCL are: CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default RMAN> |
2. CONTROLFILE 자동 백업을 활성화합니다.
RMAN> configure controlfile autobackup on; new RMAN configuration parameters: CONFIGURE CONTROLFILE AUTOBACKUP ON; new RMAN configuration parameters are successfully stored RMAN> |
3. EXAMPLE 테이블스페이스를 백업하여 CONTROLFILE 자동 백업이 활성화되었는지 확인합니다.
RMAN> shutdown immediate; database closed database dismounted Oracle instance shut down
RMAN> startup mount;
connected to target database (not started) Oracle instance started database mounted
Total System Global Area 560791552 bytes Fixed Size 1345488 bytes Variable Size 343935024 bytes Database Buffers 209715200 bytes Redo Buffers 5795840 bytes
RMAN> backup tablespace example;
Starting backup at 2010-12-20:12:23:49 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=23 device type=DISK channel ORA_DISK_1: starting full datafile backup set channel ORA_DISK_1: specifying datafile(s) in backup set input datafile file number=00005 name=+DATA/orcl/datafile/example.269.737196811 channel ORA_DISK_1: starting piece 1 at 2010-12-20:12:23:51 channel ORA_DISK_1: finished piece 1 at 2010-12-20:12:24:06 piece handle=+FRA/orcl/backupset/2010_12_20/nnndf0_tag20101220 t122351_0.272.738246231 tag=TAG20101220T122351 comment=NONE channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15 Finished backup at 2010-12-20:12:24:06
Starting Control File and SPFILE Autobackup at 2010-12-20:12:24:07 piece handle=+FRA/orcl/autobackup/2010_12_20/s_738246109.273.7 38246249 comment=NONE Finished Control File and SPFILE Autobackup at 2010-12-20:12:24:10
RMAN> alter database open; database opened |
주: 이제 CONTROL FILE 과 SPFILE 이 자동으로 백업됩니다.
시간, 분 및 초를 포함한 백업 관련 시간이 표시됩니다.
리두 로그(redo) 파일 구성 (0) | 2016.12.05 |
---|---|
RMAN 컨트롤파일(CONTROL FILE)구성 (0) | 2016.11.30 |
RMAN 백업 장치 구성 (0) | 2016.11.29 |
RMAN 백업 Retention 정책 구성 (0) | 2016.11.29 |
RMAN 날짜,시간 형식설정 (0) | 2016.11.28 |