Potrebbe essere possibile recuperarlo utilizzando una query di ritorno su all_source.
ad es. il mio corpo pacchetto è attualmente alla versione 2, che esegue la query come utente standard:
SQL> select text
2 from all_source
3 where name = 'CARPENTERI_TEST'
4 and type = 'PACKAGE BODY';
TEXT
package body carpenteri_test
is
procedure do_stuff
is
begin
dbms_output.put_line('version 2');
end do_stuff;
end carpenteri_test;
10 rows selected.
So che ho cambiato questo intorno alle 9:30 di questa sera così dopo il collegamento come utente SYSDBA mi sono imbattuto questa query:
SQL> select text
2 from all_source
3 as of timestamp
4 to_timestamp('04-JUN-2010 21:30:00', 'DD-MON-YYYY HH24:MI:SS')
5 where name = 'CARPENTERI_TEST'
6 and type = 'PACKAGE BODY';
TEXT
----------------------------------------------------------------------------
package body carpenteri_test
is
procedure do_stuff
is
begin
dbms_output.put_line('version 1');
end do_stuff;
end carpenteri_test;
10 rows selected.
Ulteriori informazioni sul flashback possono essere trovate here. Tom Kyte illustra anche come utilizzare il flashback con all_source here.
fonte
2010-06-04 21:05:00
Che dire di CVS/etc? –