Search Results dbms_pipe
Overview
SYS.DBMS_PIPE is the Oracle-supplied PL/SQL package that implements inter-process communication (IPC) through in-memory pipes within a single database instance. Unlike OS-level pipes, DBMS_PIPE allows arbitrary Oracle sessions to exchange messages privately or publicly, buffering data in the System Global Area until it is retrieved. In the Oracle E-Business Suite 12.1.1 and 12.2.2 environments, the package is certified as VALID in the SYS schema and is a foundational dependency of the EBS technology stack rather than a business-facing API. It enables loosely coupled coordination between concurrent programs, forms sessions, and background agents without requiring direct database table access. Because the package resides in SYS and is exposed through a PUBLIC synonym, EBS application code can invoke it without schema qualification, and the ETRM metadata classifies the API as OTHER, reflecting its infrastructure role.
Key Procedures and Functions
The documented interface comprises eighteen procedures and functions organized into three functional groups.
- Message construction: PACK_MESSAGE, PACK_MESSAGE_RAW, and PACK_MESSAGE_ROWID write values of type VARCHAR2, RAW, and ROWID respectively into the local message buffer.
- Message extraction: UNPACK_MESSAGE, UNPACK_MESSAGE_RAW, and UNPACK_MESSAGE_ROWID read typed values from the buffer in the order they were packed. NEXT_ITEM_TYPE reports the datatype of the next item awaiting unpacking.
- Pipe lifecycle and transport: CREATE_PIPE establishes a named private or public pipe, REMOVE_PIPE deletes it, SEND_MESSAGE transmits the buffered contents, and RECEIVE_MESSAGE reads a message into the buffer. RESET_BUFFER clears the local buffer, PURGE empties a pipe, and UNIQUE_SESSION_NAME returns a session-unique identifier suitable for private pipe naming.
These procedures are complemented by additional documented INTERNAL subprograms not listed in the excerpt. Parameter lists are intentionally omitted here; each call conforms to the standard DBMS_PIPE signature.
Tables Accessed
No application tables are documented as being referenced by DBMS_PIPE via EBS APPS synonyms. The package operates entirely against SGA-resident pipe memory and internal fixed views such as V$DB_PIPES for monitoring. Persistence is not provided: pipe contents exist only for the life of the instance, which distinguishes DBMS_PIPE from DBMS_AQ-based queuing. The absence of documented table dependencies means the package imposes no database I/O on EBS transactional schemas.
Usage Notes
Within EBS, DBMS_PIPE is typically invoked from concurrent programs, database triggers, and custom PL/SQL that require lightweight signaling. A common pattern is to have a long-running worker call RECEIVE_MESSAGE with a timeout in a loop while a form or concurrent request calls SEND_MESSAGE to wake it. The metadata records DBMS_PIPE as referenced by DBMS_ALERT, DBMS_DEBUG, DBMS_SNAPSHOT, DBMS_SQLDIAG, DBMS_CAPTURE_ADM_INTERNAL, DBMS_I_INDEX_UTL, DBMS_PIPE itself, and the EBS-specific packages OWAPUB, DEBUG_CARTX, JVMRJBC, JVMRJBCINV, PBREAK, and PBRPH. Execution privileges are granted to PUBLIC by default, so DBMS_PIPE can be called from any EBS session without explicit grants. Because pipes consume SGA memory and are non-persistent, the package is unsuitable for durable messaging; Oracle recommends DBMS_AQ or Advanced Queuing for transactionally reliable EBS integrations. Sessions must also avoid name collisions by using UNIQUE_SESSION_NAME when creating private pipes.
-
PACKAGE: SYS.DBMS_PIPE
12.1.1
owner:SYS, object_type:PACKAGE, object_name:DBMS_PIPE, status:VALID,
-
PACKAGE: SYS.DBMS_PIPE
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_PIPE, status:VALID,
-
PACKAGE BODY: SYS.DBMS_PIPE
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_PIPE, status:VALID,
-
PACKAGE BODY: SYS.DBMS_PIPE
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_PIPE, status:VALID,
-
SYNONYM: PUBLIC.DBMS_PIPE
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DBMS_PIPE, status:VALID,
-
SYNONYM: PUBLIC.DBMS_PIPE
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:DBMS_PIPE, status:VALID,
-
PACKAGE BODY: APPS.ASG_NOTIFY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASG_NOTIFY, status:VALID,
-
PACKAGE BODY: APPS.INV_PP_DEBUG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_PP_DEBUG, status:VALID,
-
PACKAGE BODY: APPS.AP_LOGGING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_LOGGING_PKG, status:VALID,
-
PACKAGE BODY: APPS.INV_PP_DEBUG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_PP_DEBUG, status:VALID,
-
PACKAGE BODY: APPS.MSC_SRP_PIPE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_SRP_PIPE, status:VALID,
-
PACKAGE BODY: APPS.ASG_NOTIFY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASG_NOTIFY, status:VALID,
-
PACKAGE BODY: APPS.FND_CP_TMSRV_PIPE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_CP_TMSRV_PIPE, status:VALID,
-
PACKAGE BODY: APPS.XLA_ENVIRONMENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_ENVIRONMENT_PKG, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_WCS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_WCS, status:VALID,
-
PACKAGE BODY: SYS.JVMRJBCINV
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:JVMRJBCINV, status:VALID,
-
PACKAGE BODY: APPS.XDP_ADAPTER_CORE_PIPE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_ADAPTER_CORE_PIPE, status:VALID,
-
PACKAGE BODY: APPS.FND_CP_TMSRV_PIPE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_CP_TMSRV_PIPE, status:VALID,
-
PACKAGE BODY: APPS.AP_LOGGING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_LOGGING_PKG, status:VALID,
-
PACKAGE BODY: SYS.PBREAK
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:PBREAK, status:VALID,
-
PACKAGE BODY: APPS.WMS_WCS_DIAGNOSTICS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WCS_DIAGNOSTICS, status:VALID,
-
PACKAGE BODY: APPS.XNP_PIPE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XNP_PIPE, status:VALID,
-
PACKAGE BODY: APPS.XNP_PIPE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XNP_PIPE, status:VALID,
-
PACKAGE BODY: SYS.PBRPH
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:PBRPH, status:VALID,
-
PACKAGE BODY: APPS.XDP_ADAPTER_CORE_PIPE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_ADAPTER_CORE_PIPE, status:VALID,
-
PACKAGE BODY: APPS.MSC_SRP_PIPE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_SRP_PIPE, status:VALID,
-
PACKAGE BODY: CTXSYS.DRVTMT
12.1.1
owner:CTXSYS, object_type:PACKAGE BODY, object_name:DRVTMT, status:VALID,
-
PACKAGE BODY: APPS.FND_TRANSACTION_PIPE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_TRANSACTION_PIPE, status:VALID,
-
PACKAGE BODY: SYS.DBMS_ALERT
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_ALERT, status:VALID,
-
PACKAGE BODY: APPS.XLA_ENVIRONMENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_ENVIRONMENT_PKG, status:VALID,
-
PACKAGE BODY: SYS.JVMRJBC
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:JVMRJBC, status:VALID,
-
PACKAGE BODY: APPS.WMS_WCS_DIAGNOSTICS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WCS_DIAGNOSTICS, status:VALID,
-
PACKAGE BODY: SYS.JVMRJBC
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:JVMRJBC, status:VALID,
-
PACKAGE BODY: SYS.DBMS_DEBUG
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_DEBUG, status:VALID,
-
PACKAGE BODY: SYS.JVMRJBCINV
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:JVMRJBCINV, status:VALID,
-
PACKAGE BODY: APPS.IBC_DEBUG_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBC_DEBUG_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBC_DEBUG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBC_DEBUG_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_DEVICE_INTEGRATION_WCS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_DEVICE_INTEGRATION_WCS, status:VALID,
-
PACKAGE BODY: APPS.INVPUTLI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INVPUTLI, status:VALID,
-
PACKAGE BODY: SYS.PBREAK
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:PBREAK, status:VALID,
-
PACKAGE BODY: SYS.DBMS_ALERT
12.1.1
owner:SYS, object_type:PACKAGE BODY, object_name:DBMS_ALERT, status:VALID,
-
PACKAGE BODY: APPS.HR_DM_UPLOAD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_UPLOAD, status:VALID,
-
PACKAGE BODY: APPS.RLM_CORE_SV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_CORE_SV, status:VALID,
-
PACKAGE BODY: SYS.PBRPH
12.2.2
owner:SYS, object_type:PACKAGE BODY, object_name:PBRPH, status:VALID,
-
PACKAGE BODY: APPS.HR_GEN_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_GEN_PKG, status:VALID,
-
PACKAGE BODY: APPS.HR_GEN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_GEN_PKG, status:VALID,
-
PACKAGE BODY: APPS.FND_TRANSACTION_PIPE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_TRANSACTION_PIPE, status:VALID,
-
PACKAGE BODY: APPS.WMS_CAROUSEL_INTEGRATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_CAROUSEL_INTEGRATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.HR_DM_DELETE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DM_DELETE, status:VALID,
-
PACKAGE BODY: SYS.DBMS_PIPE
12.2.2