L'instruction Flashback en 10g
Bonjour,
Je suis en 10gR2 et je voulais tester la récupération des tables après un drop et je ne m'en sors pas. Voici mon code :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| SQL )>create table lbo(xx number);
Table created.
SQL )> insert into lbo values (12)
1 row created.
SQL )>commit;
Commit complete.
SQL )>drop table lbo;
Table dropped.
SQL )>flashback table lbo to before drop;
SP2-0734: unknown command beginning "flashback ..." - rest of line ignored.
SQL )> |
Je ne vois pas ce qui manque ! la syntanxe est bonne, mais j'ai une erreur :oops:
Merci de votre aide.
LBO72.