Update delivery parameters of BIP scheduled jobs from the back-end database
Hi,
I have hundreds of BIP scheduled jobs and need to make a small change in their delivery parameters from the back-end database.
I've found following columns which hold the related metadata in BLOB datatype:
- BIPLATFORM.XMLP_SCHED_JOB.DELIVERY_PARAMETERS
- BIPLATFORM.QRTZ_JOB_DETAILS.JOB_DATA
Then I carefully update them using standard Oracle supplied packages (DBMS_LOB and UTL_RAW) without destroying the binary format of the data. But after updating these columns the associated jobs stopped executing. I checked them from BIP interface and they looked correct, the delivery parameters (FTP => Directory Name) has been changed and the jobs were active. But no execution happened after the update.