글수 57
SQL> show user
USER은 "HR"입니다
SQL> update employees set first_name ='babo';
107 행이 갱신되었습니다.
SQL> commit;
커밋이 완료되었습니다.
SQL> select first_name from employees where rownum<3;
FIRST_NAME
----------------------------------------
babo
babo
SQL> alter table employees enable row movement;
테이블이 변경되었습니다.
SQL> flashback table employees to timestamp systimestamp-1/24;
플래시백이 완료되었습니다.
SQL> select first_name from employees where rownum<3;
FIRST_NAME
----------------------------------------
Ellen
Sundar
SQL>


