Hello,
You can use flash_back_query if you are using oracle database.
some like this
Create table BACKUP02102014 as select * from SAPSR3.YOURTABLE
AS OF TIMESTAMP
TO_TIMESTAMP('02-10-2014 00:00:00','DD-MM-YYYY HH24:MI:SS');
and tomorow you doing
Create table BACKUP03102014 as select * from SAPSR3.YOURTABLE
AS OF TIMESTAMP
TO_TIMESTAMP('03-10-2014 00:00:00','DD-MM-YYYY HH24:MI:SS');
We have a situation for expecific day. But you can do other ,..like this
Only diferents
select * from BACKUP03102014
minus
select * from BACKUP02102014 ;
or export by expdp oracle utility or make backup
r3trans -w -> you can export data from backuptable
Regards
Sandro Lobo
Message was edited by: Sandro Lobo