SDM_PARAMETER
This table stores parameters for other artifacts such as Target, for example, Target Connection information.
Primary Key
Table 4-155 Primary Key Table
Constraint Name | Columns |
---|---|
SDM_PARAMETER_PK | PARAMETER_ID |
Columns
Table 4-156 Column Details Table
Name | Data Type | Length | Precision | Scale | Null Allowed | Comments |
---|---|---|---|---|---|---|
PARAMETER_ID | NUMBER | 18 | 0 | No | Unique identifier of the record. | |
PARENT_OBJECT_ID | NUMBER | 18 | 0 | No | Parent objects key, for example, Target ID. | |
PARAMETER_CATEGORY | VARCHAR2 | 40 | No | Defines type of the parameter, for example, CloudFinancialsConnection | ||
PARAMETER_NAME | VARCHAR2 | 80 | No | Stores name for the parameter. | ||
DATA_TYPE | VARCHAR2 | 20 | No | Data type of the parameter value | ||
PARAMETER_VALUE_TEXT | VARCHAR2 | 1000 | Yes | Stores the Text value in case Data_Type is Text, YN, TF. | ||
PARAMETER_VALUE_NUM | NUMBER | 29 | 12 | Yes | Stores the Number value when Data_Type is Number or Integer. | |
PARAMETER_VALUE_DATE | DATE | Yes | Stores the Number value when Data_Type is Date or DateTime. | |||
APP_ID | NUMBER | 1 | 0 | No | Identifier for the application to which the row corresponds to, for example, SDM:4. | |
OBJECT_VERSION_NUMBER | NUMBER | 9 | 0 | No | 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. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 255 | Yes | Who column: indicates the session login associated to the user who last updated the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 255 | No | Who column: indicates the user who last updated the row. | ||
LAST_UPDATE_DATE | DATE | No | Who column: indicates the date and time of the last update of the row. | |||
CREATED_BY | VARCHAR2 | 255 | No | Who column: indicates the user who created the row. | ||
CREATION_DATE | DATE | No | Who column: indicates the date and time of the creation of the row. |
Indexes
Table 4-157 Index Table
Index | Uniqueness | Columns |
---|---|---|
SDM_PARAMETER_PK | UNIQUE | PARAMETER_ID |
SDM_PARM_U1_NAMEPARENTID | UNIQUE | PARENT_OBJECT_ID, SYS_NC00016$ |