Supported EagleML Objects
Loading to DB (inbound) – all EagleML objects EXCEPT Accounting.
Extracting from DB (outbound) – the following objects:
- Warehouse Trade
- Generic SMF
- Generic SMF (history mode)
- SMF Identifiers
- SMF Identifiers (history mode)
- Issuer Organization
- Issuer Relationship
- Rating
- Generic Issue Analytics
- Client
- Schedule
- Time Series
Required Database Tables
You must first create extension database tables with the required fields as listed below and grant the rights to apply SELECT, INSERT, UPDATE and DELETE commands in these tables to the ESTAR user. You will need to create two database tables to load your extension.
The following sample script allows you to create two extension tables.
create table ESTAR.TEMP_WRHS_EXT ( EFFECTIVE_DATE DATE, ENTITY_ID CHAR(8), SRC_INTFC_INST NUMBER, PARAM1 VARCHAR2(500), PARAM2 NUMBER, PARAM3 DATE ); create table ESTAR.TEMP_TRADE_EXT ( TRADE_ID NUMBER, PARAM1 VARCHAR2(500), PARAM2 NUMBER, PARAM3 DATE ); grant select, insert, update, delete on ESTAR.TEMP_WRHS_EXT to ESTAR; grant select, insert, update, delete on ESTAR.TEMP_TRADE_EXT to ESTAR;
Required Fields
- EFFECTIVE_DATE - DATE,
- ENTITY_ID - CHAR(8),
- SRC_INTFC_INST - NUMBER
- SECURITY_ALIAS - NUMBER
- LONG_SHORT_IND - CHAR(1)
are the fields (data type in bold) required for the following extension tables:
- WarehouseTrade
- WarehouseCloseLot
- WarehouseCashActivity
- WarehouseOpenLot
- WarehousePosition
- WarehouseNAV
- WarehouseCashFlowProjection
- WarehouseGLBalances
- WarehousePerformance
TRADE_ID - NUMBER field is required for the WarehouseBrokerTradeQuote extension table.
Add Comment