In Oracle SOA Suite , runtime metadata for composite applications, flow instances, and API hits is stored in the SOA Infrastructure Database ( SOADB ). SQL Server users often use NOLOCK to avoid locking rows during queries, but in Oracle, the multi-version concurrency control (MVCC) model inherently prevents readers from blocking writers. However, there are Oracle-specific methods to emulate lock-free or low-lock reads when querying SOADB. This blog will guide you through querying flow instances and API hits data from SOADB and explain how to ensure lock-free behavior. 1. Key Tables in SOADB for Flow Instances and API Hits Flow Instance Data COMPOSITE_INSTANCE : Stores composite-level instance information, such as state, creation time, and last modified time. CUBE_INSTANCE : Provides details about BPEL process-level execution. MEDIATOR_INSTANCE : Contains information about Mediator flows within composite applications. API Hit Data DLV_MESSAGE : Tracks delivery messages, including...
A blog site for technical inputs and knowledge in basic form so that everybody can gain access to simple yet meaningful content.