FUN_TLM_SENSOR_LOGS
This table contains information of sensors. A sensor is an activity that happens in a system where telemetry data needs to be gathered.
Details
-
Schema: FUSION
-
Object owner: FUN
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FUN_TLM_SENSOR_LOGS_PK |
SENSOR_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| SENSOR_ID | NUMBER | 18 | Yes | Sensor identifier and primary key. | |
| PARENT_SENSOR_ID | NUMBER | 18 | Sensor identifier of parent sensor record. | ||
| PRODUCT_CODE | VARCHAR2 | 30 | Yes | Name of the product to which the sensor activity belongs. | |
| JOB_NAME | VARCHAR2 | 800 | Name of the process from where the sensor is gathered. | ||
| JOB_REQUEST_ID | NUMBER | 18 | Job request identifier obtained from REQUEST_HISTORY. | ||
| EVENT_NAME | VARCHAR2 | 256 | Event name under the sensor activity, also called milestone. | ||
| DATA_ITEM_CODE | VARCHAR2 | 128 | Yes | Name of data item. Possible values include START_TIME, END_TIME, COMPLETED_ACTION, and so on. | |
| DATA_ITEM_VALUE | VARCHAR2 | 128 | Value corresponding to data item. | ||
| DIMENSION1_CODE | VARCHAR2 | 128 | Name of first dimension of instrumentation. | ||
| DIMENSION1_VALUE | VARCHAR2 | 128 | Value corresponding to first dimension. | ||
| DIMENSION2_CODE | VARCHAR2 | 128 | Name of second dimension of instrumentation. | ||
| DIMENSION2_VALUE | VARCHAR2 | 128 | Value corresponding to second dimension. | ||
| DIMENSION3_CODE | VARCHAR2 | 128 | Name of third dimension of instrumentation. | ||
| DIMENSION3_VALUE | VARCHAR2 | 128 | Value corresponding to third dimension. | ||
| DIMENSION4_CODE | VARCHAR2 | 128 | Name of fourth dimension of instrumentation. | ||
| DIMENSION4_VALUE | VARCHAR2 | 128 | Value corresponding to fourth dimension of instrumentation. | ||
| DIMENSION5_CODE | VARCHAR2 | 128 | Name of fifth dimension of instrumentation. | ||
| DIMENSION5_VALUE | VARCHAR2 | 128 | Value corresponding to fifth dimension of instrumentation. | ||
| DIMENSION6_CODE | VARCHAR2 | 128 | Name of sixth dimension of instrumentation. | ||
| DIMENSION6_VALUE | VARCHAR2 | 128 | Value corresponding to sixth dimension of instrumentation. | ||
| DIMENSION7_CODE | VARCHAR2 | 128 | Name of seventh dimension of instrumentation. | ||
| DIMENSION7_VALUE | VARCHAR2 | 128 | Value corresponding to seventh dimension of instrumentation. | ||
| COMPLETION_FLAG | VARCHAR2 | 1 | Yes | Indicates whether the sensor is complete or in progress. | |
| 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. | |
| 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. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| FUN_TLM_SENSOR_LOGS_N1 | Non Unique | Default | PRODUCT_CODE, JOB_REQUEST_ID, EVENT_NAME, DATA_ITEM_CODE |
| FUN_TLM_SENSOR_LOGS_N2 | Non Unique | Default | PARENT_SENSOR_ID, EVENT_NAME, DATA_ITEM_CODE |
| FUN_TLM_SENSOR_LOGS_U1 | Unique | Default | SENSOR_ID |