Hi Sailesh, create a simple job with following flow tDBConnection-->tDBRow Write your delete statement in tDBRow component export the job and schedule it. Vaibhav
At first you have to figure out how to select the records to delete. In oracle a DATE typed value is actually an integer day and the numbers right to the comma are the time. You can therefore select the data to delete with a simply subtraction like this:
delete from ORDERS where ORDER_DATE > (sysdate - 7)
This statement can by run within a tOracleRow component and if you schedule this job every day you will get a kind of house keeping of the data for 7 days.