Note operative sul Flashback in oracle.
Testato con: Oracle 10g – 11g
Per poter utilizzare le tecnologia di Flashback è necessario che il vostro db sia opportunamente configurato
Ecco alcune delle principali funzionalità fornite dalla tecnologia Flashback
- FLASHBACK TO BEFORE DROP -> riporta la tabella allo stato antecedente al drop:
DROP TABLE table_name; ... SHOW RECYCLEBIN ... FLASHBACK TABLE table_name to BEFORE DROP;
- FLASHBACK QUERY -> Interrogare una tabella com’era nel passato:
select * from table_name as of timestamp to_date('05/03/12 14:59:50', 'dd/mm/yy hh24:mi:ss');
- FLASHBACK TABLE -> Riporta una tabella indietro nel tempo:
ALTER TABLE table_name ENABLE ROW MOVEMENT; ... FLASHBACK TABLE table_name TO TIMESTAMP to_date('05/10/11 14:59:50', 'dd/mm/yy hh24:mi:ss');