ZSP_ODM_DATA_EXPLORE

This table stores the statistics of an attribute code. For example, percentage of NULL or distinct value, Mean,Mode, Median etc.

Details

  • Schema: FUSION

  • Object owner: ZSP

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

ZSP_ODM_DATA_EXPLORE_PK

DATA_EXP_ID

Columns

Name Datatype Length Precision Not-null Comments
DATA_EXP_ID NUMBER 18 Yes DATA_EXP_ID, primary key of table.
DATA_EXP_JOB_ID NUMBER 18 Yes DATA_EXP_JOB_ID is from ZSP_ODM_DATA_EXP_JOBS table.
ATTRIBUTE_CODE VARCHAR2 30 Yes Attribute code of an entity.
DATA_TYPE VARCHAR2 100 Data Type of an attribute code.
NULL_PERCENT NUMBER Percentage of NULL values of an attribute.
DISTINCT_CNT NUMBER Count of Distinct values of an attribute.
DISTINCT_PERCENT NUMBER Percentage of Distinct values of an attribute.
MODE_VALUE VARCHAR2 4000 Mode value of an attribute.
AVG_VALUE NUMBER Average value of an attribute.
AVG_DATE DATE Average Date value of an attribute.
AVG_TS_TZ TIMESTAMP Average Timestamp with timezone value of an attribute.
MEDIAN_VALUE NUMBER Median value of an attribute.
MEDIAN_DATE DATE Median Date value of an attribute.
MEDIAN_TS_TZ TIMESTAMP Median timestamp with timezone value of an attribute.
MIN_VALUE VARCHAR2 4000 Minimum value of an attribute.
MAX_VALUE VARCHAR2 4000 Maximum value of an attribute.
STD_VALUE NUMBER Standard Deviation value of an attribute.
VARIANCE_VALUE NUMBER Variance value of an attribute.
SKEWNESS NUMBER Skewness.
KURTOSIS NUMBER Kurtosis.
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_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.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates 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.
USER_LAST_UPDATE_DATE TIMESTAMP Disconnected Mobile: indicates the date and time of the last update of the row. This value is different from LAST_UPDATE_DATE if the update originally happened in a different database (i.e. a different mobile database or the server).

Foreign Keys

Table Foreign Table Foreign Key Column
ZSP_ODM_DATA_EXPLORE zsp_odm_data_exp_jobs DATA_EXP_JOB_ID
zsp_odm_data_explr_dtls zsp_odm_data_explore DATA_EXP_ID

Indexes

Index Uniqueness Tablespace Columns
ZSP_ODM_DATA_EXPLORE_N1 Non Unique FUSION_TS_TX_DATA ATTRIBUTE_CODE
ZSP_ODM_DATA_EXPLORE_PK Unique FUSION_TS_TX_DATA DATA_EXP_ID
ZSP_ODM_DATA_EXPLORE_U1 Unique FUSION_TS_TX_DATA DATA_EXP_JOB_ID, ATTRIBUTE_CODE