Database초보우낙
25. Rman을 사용해서 특정 Tablespace만 백업하기 본문
■ 실습
#1. ts5000이라는 테이블 스페이스를 생성
create tablespace ts5000 datafile '/u01/app/oracle/oradata/Ouh/ts5000.dbf' size 10m;
#2. rman을 이용해서 ts5000테이블스페이스를 hot백업
rman target sys/oracle mocatalog
backup tablespace ts5000;
list backup of tablespace ts5000;
문제1
ts6000테이블 스페이스를 생성하고 rman으로 백업받기
create tablespace ts6000 datafile '/u01/app/oracle/oradata/Ouh/ts6000.dbf' size 10m;
backup tablespace ts6000;
list backup of tablespace ts6000;
'백업과 복구 > 백업과 복구(Rman)' 카테고리의 다른 글
27. Rman을 사용해서 Non system datafile 손상시 복구하기(open상태) (0) | 2024.04.15 |
---|---|
26. Rman을 사용해서 Non system datafile손상시 복구하기(mount상태) (0) | 2024.04.15 |
24. RMAN을 사용해서 hotbackup (0) | 2024.04.14 |
23. RMAN을 사용해서 완전 복구하기 (0) | 2024.04.14 |
Rman에서 반드시 알아야하는 명령어 (0) | 2024.04.14 |