DOO_PERFORMANCE_METRICS
This table would contain the execution timing of different modules in fusion order management.
Details
-
Schema: FUSION
-
Object owner: DOO
-
Object type: TABLE
-
Tablespace: FUSION_TS_TX_DATA
Primary Key
Name | Columns |
---|---|
DOO_PERFORMANCE_METRICS_PK |
PERFORMANCE_METRIC_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
PERFORMANCE_METRIC_ID | NUMBER | 18 | Yes | Unique identifier for the performance metrics. | |
DOCUMENT_CONTEXT_ID | NUMBER | 18 | Yes | Unique identifier of the transaction such as header_id, fulfill_line_id for which the metrics are recorded. | |
DOCUMENT_CONTEXT_TYPE | VARCHAR2 | 30 | Entity corresponding to the value in the DOCUMENT_CONTEXT_ID for which the performance metrics are recorded. | ||
MODULE_NAME | VARCHAR2 | 80 | Identifies the module such as the event code for extensions or the method name for which the performance metrics are recorded. | ||
MODULE_CONTEXT | VARCHAR2 | 80 | Identifies additional context for the module. | ||
MODULE_LEVEL | VARCHAR2 | 80 | Used for tracking the hierarchy of the modules that contributed for the elapsed time. | ||
EXTENSION_ID | NUMBER | 18 | Unique identifier of the extension. | ||
ELAPSED_TIME_IN_MILLISECONDS | NUMBER | 10 | Yes | Module Execution Time in milliseconds. | |
ECID | VARCHAR2 | 80 | Yes | Execution Context ID for which the metrics are recorded. Helps to correlate the logs while debugging. | |
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
DOO_PERFORMANCE_METRICS_U1 | Unique | Default | PERFORMANCE_METRIC_ID |