Dienstag, Dezember 20, 2005

Flashback

Eine ganz kurze Demonstration zur Flashback-Funktionalität in 10g:

create table test1(a number);

insert into test1 values (1);

commit;

drop table test1;

select * 
  from test1;

  from test1
       *
FEHLER in Zeile 2:
ORA-00942: Tabelle oder View nicht vorhanden

flashback table test1 to before drop;

select * 
  from test1;

         A
----------
         1

Keine Kommentare:

Kommentar veröffentlichen