The cube data & esb transaction data which are stored in orabpel/oraesb schema will be deleted via database script after every regular interval.
Database Cleaning:
Description:
The transactional data which are stored in oracle database (orabpel Schema) for BPEL Instances in table
i)CUBE_INSTANCE
ii)CUBE_SCOPE
and data which are stored in oracle database(oraesb Schema) for esb transactions, in below tables
i)ESB_TRANSACTION_STATUS
ii)ESB_TRACKING_FIELD_VALUE
iii)ESB_FAULTED_INSTANCE
iv)ESB_INSTANCE_RELATION_XML
v)ESB_SERVICE_RELATION
vi)ESB_RELATION_XML
vii)ESB_ACTIVITY
Stored Procedure:
a) Delete_CUBE_Data.sql
b) Delete_ESB_Data.sql
Procedure to run:
To execute the procedure below commands have to be run from SQL prompt:
call Delete_ESB_Data(date_start, date_end);
call Delete_CUBE_Data(date_start, date_end);
The passed dates should be passed in 'YYYY/MM/DD' format,
e.g. call Delete_ESB_Data('2009/02/10','2009/12/02');