Oracle 12c RMAN의 new feature 중 하나인 table recovery
아래 table recovery 방법을 보니 AUXILIARY Database를 만들어 거기서 dump datafile을 뽑아내는 모양새.
과거에 삭제된 table 복구를 위해 수행되었던 복구 절차를 명령어 한줄로 만들어 놓았네요. ㅎ
Recover the tables EMP and DEPT using the following clauses in the RECOVER command: DATAPUMP DESTINATION, DUMP FILE, REMAP TABLE, and NOTABLEIMPORT.
The following RECOVER command recovers the EMP and DEPT tables.
RECOVER TABLE SCOTT.EMP, SCOTT.DEPT
UNTIL TIME 'SYSDATE-1'
AUXILIARY DESTINATION '/tmp/oracle/recover'
DATAPUMP DESTINATION '/tmp/recover/dumpfiles'
DUMP FILE 'emp_dept_exp_dump.dat'
NOTABLEIMPORT;
참고 : http://docs.oracle.com/cd/E16655_01/backup.121/e17630/rcmresind.htm#BRADV703
'Oracle Database > Oracle New Features' 카테고리의 다른 글
Queryable Patch Inventory (0) | 2014.11.11 |
---|---|
12c Hybrid Hash Distribution with Skew Detection / Handling (0) | 2014.05.20 |
Oracle Database 12c의 소소한 feature. (0) | 2013.12.13 |
SQL prompt for Oracle Database 12c Multitenant (0) | 2013.12.09 |
Oracle 12c, Desupport for Raw Storage Devices (0) | 2013.12.06 |