Flashback enhancements

Oracle's new flashback feature available in Oracle version 10g is not supported in Replication Agent for Oracle. It requires that you disable the recycle bin. To disable the recycle bin (which requires sysdba privileges):

purge dba_recyclebin;
ALTER SYSTEM SET recyclebin = OFF;

To view the contents of the recycle bin:

select * from dba_recyclebin;

To view the current recycle bin configuration:

select value from v$parameter where name = “recyclebin”;