Non è possibile eseguire il rollback di ciò che è già stato commesso. Quello che puoi fare, in questa particolare situazione, come una delle opzioni più rapide, è inviare una query flashback su una tabella da cui hai cancellato le righe e reinserirle. Ecco un semplice esempio:
Nota :Il successo di questa operazione dipende dal valore (predefinito 900 secondi) di undo_retention
parametro - periodo di tempo (può essere ridotto automaticamente) durante il quale le informazioni sull'annullamento vengono conservate nel tablespace di annullamento.
/* our test table */
create table test_tb(
col number
);
/* populate test table with some sample data */
insert into test_tb(col)
select level
from dual
connect by level <= 2;
select * from test_tb;
COL
----------
1
2
/* delete everything from the test table */
delete from test_tb;
select * from test_tb;
no rows selected
Inserisci di nuovo le righe eliminate:
/* flashback query to see contents of the test table
as of specific point in time in the past */
select * /* specify past time */
from test_tb as of timestamp timestamp '2013-11-08 10:54:00'
COL
----------
1
2
/* insert deleted rows */
insert into test_tb
select * /* specify past time */
from test_tb as of timestamp timestamp '2013-11-08 10:54:00'
minus
select *
from test_tb
select *
from test_tb;
COL
----------
1
2