POQ_QUESTNAIRE_RESP_VALUES
POQ_QUESTNAIRE_RESP_VALUES stores the response value, which could be a date, text or number value, to a given question on a questionnaire. For question of type multiple choice, an entry is created in this table for each of the acceptable response for the question. If responder selects that acceptable response, then IS_SELECTED_FLAG is set to 'Y', otherwise it is set to 'N'.
Details
-
Schema: FUSION
-
Object owner: POQ
-
Object type: TABLE
-
Tablespace: FUSION_TS_TX_DATA
Primary Key
Name | Columns |
---|---|
POQ_QUESTNAIRE_RESP_VALUES_PK |
QUESTNAIRE_RESP_VALUE_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
QUESTNAIRE_RESP_VALUE_ID | NUMBER | 18 | Yes | Internal system identifier for a response question details. | |
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. | |
QUESTNAIRE_RESPONSE_ID | NUMBER | 18 | Yes | Indentifier to response to questionnaire question. | |
RESPONSE_VALUE_TXT | VARCHAR2 | 4000 | The text of a manually entered response to questionnaire question value. | ||
RESPONSE_VALUE_DATE | DATE | Response value for a questionnaire question setup with resposne type as date. | |||
RESPONSE_VALUE_DATETIME | TIMESTAMP | Response value for a questionnaire question setup with resposne type as date and time. | |||
RESPONSE_VALUE_NUM | NUMBER | The date of a manually entered response to questionnaire value. | |||
ACC_RESPONSE_ID | NUMBER | 18 | Identifier of the acceptable response from poq_ques_acc_responses_b. | ||
QUESTNAIRE_ACC_RESPONSE_ID | NUMBER | 18 | Unique identifier for questionnaire acceptable response. | ||
IS_SELECTED_FLAG | VARCHAR2 | 1 | Indicates if acceptable response value is selected by the responder or not. | ||
RESPONSE_VALIDATE | VARCHAR2 | 30 | Indicates if the response value has additional validations, such as DUNS or URL entry. | ||
CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
Table | Foreign Table | Foreign Key Column |
---|---|---|
POQ_QUESTNAIRE_RESP_VALUES | poq_questnaire_responses | QUESTNAIRE_RESPONSE_ID |
POQ_QUESTNAIRE_RESP_VALUES | poq_ques_acc_responses_b | ACC_RESPONSE_ID |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
POQ_QUESTNAIRE_RESP_VALUES_N1 | Non Unique | Default | QUESTNAIRE_RESPONSE_ID, ACC_RESPONSE_ID |
POQ_QUESTNAIRE_RESP_VALUES_PK | Unique | FUSION_TS_TX_DATA | QUESTNAIRE_RESP_VALUE_ID |