본문 바로가기

Computer Engineering/DB

오라클 recyclebin 조회, 플래시백

1. 테이블 삭제

SQL> drop table emp2;

2. 휴지통 조회

  1  select original_name, operation, droptime
  2* from recyclebin
SQL> /

ORIGINAL_NAME                    OPERATION DROPTIME                            
-------------------------------- --------- -------------------                 
SYS_C005497                      DROP      2008-07-13:12:38:07                 
EMP2                             DROP      2008-07-13:12:38:07        

        
3. 휴지통에 지운 테이블 복구

SQL> flashback table emp2 to before drop;

플래시백이 완료되었습니다.