Time controlled workflow not inserting

Hello all,

I currently have a workflow that that has a timer start event that triggers every two hours. Upon each execution, it calls a JavaDelegate that will insert new entries into my application’s DB (separate from my process engine DB).

The error I’m running into is that the Java Delegate is able to execute SELECT queries on my application’s DB, but is unable to run INSERT queries. I’m printing the hibernate SQL statements and I’m only seeing SELECT queries being printed. Is there something I need to configure to ensure my time controlled workflows are able to insert into my application’s DB?

If I call the same java delegate from a manually executed workflow, then I don’t have any problems with inserting new entries into my application’s DB. The inserts are not happening only in this time controlled workflow. Here’s my BPMN diagram I am using at the moment:
ip_timer_process.bpmn (2.7 KB)

Thanks for your assistance.