Search Results ieo_svr_rt_info
Overview
IEO_SVR_RT_INFO is a table owned by the IEO schema within the Interaction Center Technology product family of Oracle E-Business Suite. Its documented purpose is to store real-time information about servers participating in an Interaction Center deployment. In EBS 12.1.1 and 12.2.2, this table functions as a runtime telemetry store that records the current operational state and load characteristics of each registered server node, complementing the more static server definitions held in IEO_SVR_SERVERS.
The Foreign Key relationships show that IEO_SVR_RT_INFO.SERVER_ID references IEO_SVR_SERVERS, and SECURITY_GROUP_ID references FND_SECURITY_GROUPS. Because the table is keyed on SERVER_ID and carries descriptive measures such as status and load factors, it is best understood as dependent, server-scoped data. The heuristic Data Vault classification derived from the FK structure is satellite-leaning; that is, the table behaves like a satellite attached to the IEO_SVR_SERVERS hub, with SERVER_ID acting as the effective parent key. This classification is a modeling suggestion only and should be validated against the actual ETRM data model for the target release.
Key Information Stored
The documented physical schema for 12.2.2 lists nine columns. The most significant are:
- SERVER_ID — Surrogate primary key column of the IEO_SVR_RT_INFO_PK constraint, and the foreign key to IEO_SVR_SERVERS. It ties each real-time row to its parent server definition.
- STATUS — Runtime status indicator for the server at the time of the record.
- MAJOR_LOAD_FACTOR and MINOR_LOAD_FACTOR — Load measurements used to gauge the server's relative capacity or utilization.
- LAST_UPDATE_DATE — Standard EBS audit column recording when the row was last modified.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the EBS framework to prevent concurrent update conflicts.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, restricting row visibility by security group.
- NODE_ID — Identifier of the node associated with the server.
- EXTRA — A generic attribute column reserved for additional runtime context.
The unique index IEO_SVR_RT_INFO_U1 on SERVER_ID reinforces SERVER_ID as the business-key candidate; no alternate unique business key beyond this is documented.
Common Use Cases and Queries
Typical uses center on monitoring Interaction Center server health. Administrators and reporting queries join this table to IEO_SVR_SERVERS to resolve server names while inspecting current status and load. A representative pattern:
- Identifying loaded or overloaded servers:
SELECT s.server_id, r.status, r.major_load_factor, r.minor_load_factor FROM ieo.ieo_svr_rt_info r JOIN ieo.ieo_svr_servers s ON s.server_id = r.server_id WHERE r.status = 'Y'; - Listing servers updated within a window:
SELECT * FROM ieo.ieo_svr_rt_info WHERE last_update_date > SYSDATE - 1; - Security-group filtered reporting: join on SECURITY_GROUP_ID to FND_SECURITY_GROUPS to constrain results by operating unit or group context.
- Change tracking audits: use OBJECT_VERSION_NUMBER and LAST_UPDATE_DATE to detect concurrent modifications.
Related Objects
The principal related objects, drawn from the documented FK relationships, are:
- IEO_SVR_SERVERS — parent table; join via IEO_SVR_RT_INFO.SERVER_ID = IEO_SVR_SERVERS.SERVER_ID.
- FND_SECURITY_GROUPS — referenced by SECURITY_GROUP_ID for row-level security grouping.
- IEO_SVR_RT_INFO_PK and IEO_SVR_RT_INFO_U1 — the primary key and unique index constraints enforcing SERVER_ID integrity.
- IEO schema objects such as server configuration and node tables that consume NODE_ID and load-factor data for Interaction Center runtime decisions.
Because IEO_SVR_RT_INFO is closely coupled to IEO_SVR_SERVERS, any query or report should be authored with that join as the anchor, applying security-group predicates where multi-group access is configured.
-
Table: IEO_SVR_RT_INFO
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_RT_INFO, object_name:IEO_SVR_RT_INFO, status:VALID, product: IEO - Interaction Center Technology , description: Real time information about servers. , implementation_dba_data: IEO.IEO_SVR_RT_INFO ,
-
Table: IEO_SVR_RT_INFO
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_RT_INFO, object_name:IEO_SVR_RT_INFO, status:VALID, product: IEO - Interaction Center Technology , description: Real time information about servers. , implementation_dba_data: IEO.IEO_SVR_RT_INFO ,
-
VIEW: IEO.IEO_SVR_RT_INFO#
12.2.2
owner:IEO, object_type:VIEW, object_name:IEO_SVR_RT_INFO#, status:VALID,
-
APPS.IEO_SVR_UTIL_PVT SQL Statements
12.1.1
-
APPS.IEO_SVR_UTIL_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.IEO_SVR_RT_INFO
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEO_SVR_RT_INFO, status:VALID,
-
SYNONYM: APPS.IEO_SVR_RT_INFO
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEO_SVR_RT_INFO, status:VALID,
-
VIEW: IEO.IEO_SVR_RT_INFO#
12.2.2
-
TABLE: IEO.IEO_SVR_RT_INFO
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_RT_INFO, object_name:IEO_SVR_RT_INFO, status:VALID,
-
TABLE: IEO.IEO_SVR_RT_INFO
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_RT_INFO, object_name:IEO_SVR_RT_INFO, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: IEO_SVR_SERVERS
12.1.1
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_SERVERS, object_name:IEO_SVR_SERVERS, status:VALID, product: IEO - Interaction Center Technology , description: Servers. , implementation_dba_data: IEO.IEO_SVR_SERVERS ,
-
Table: IEO_SVR_SERVERS
12.2.2
owner:IEO, object_type:TABLE, fnd_design_data:IEO.IEO_SVR_SERVERS, object_name:IEO_SVR_SERVERS, status:VALID, product: IEO - Interaction Center Technology , description: Servers. , implementation_dba_data: IEO.IEO_SVR_SERVERS ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEC_COMMON_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_COMMON_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEC_COMMON_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_COMMON_UTIL_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEO_ICSM_CMD_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_ICSM_CMD_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_SVR_UTIL_PVT, status:VALID,
-
APPS.IEO_CONCURRENT_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CCT_AQ_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CCT_AQ_PUB, status:VALID,
-
PACKAGE BODY: APPS.CCT_AQ_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CCT_AQ_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEO_ICSM_CMD_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_ICSM_CMD_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_SVR_UTIL_PVT, status:VALID,
-
APPS.IEO_ICSM_CMD_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEC_STATUS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_STATUS_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEO_CONCURRENT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_CONCURRENT_PUB, status:VALID,
-
APPS.IEO_CONCURRENT_PUB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.IEO_ICSM_CMD_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IEO_CONCURRENT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEO_CONCURRENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.IEC_STATUS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEC_STATUS_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_PVT, status:VALID,
-
PACKAGE BODY: APPS.IEU_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_PVT, status:VALID,
-
APPS.CCT_AQ_PUB SQL Statements
12.1.1
-
APPS.CCT_AQ_PUB SQL Statements
12.2.2
-
APPS.IEC_STATUS_PVT SQL Statements
12.1.1
-
APPS.IEC_STATUS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.IEO_SVR_UTIL_PVT
12.2.2
-
APPS.IEC_COMMON_UTIL_PVT SQL Statements
12.2.2
-
APPS.IEC_COMMON_UTIL_PVT SQL Statements
12.1.1
-
eTRM - IEO Tables and Views
12.2.2
description: Currently-defined voice messages available to be played to callee ,
-
eTRM - IEO Tables and Views
12.1.1
description: Currently-defined voice messages available to be played to callee ,