CST_SQL_OVERRIDE
This table stores the sqls that have been overriden to be modified at runtime.
Details
-
Schema: FUSION
-
Object owner: CST
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
CST_SQL_OVERRIDE_PK |
CLASS_NAME, SQL_NAME |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| DEFECT_IDENTIFIER | VARCHAR2 | 60 | Yes | Indicates the bug for which the sql was overridden. | |
| DEFECT_RELEASE | VARCHAR2 | 40 | Indicates the release in which this entry is created and valid. | ||
| VALID_UPTO_REL | VARCHAR2 | 80 | Indicates the release through which override remains valid. | ||
| CLASS_NAME | VARCHAR2 | 240 | Yes | Indicates the java class the owns the sql. | |
| SQL_NAME | VARCHAR2 | 240 | Yes | Indicates the sql name as used in the java class execute statement. | |
| SQL_TEXT | CLOB | Yes | This column stores the sql text that is provided and will be used. | ||
| TIME_TO_LIVE | NUMBER | 9 | Yes | Indicates the number of days the sql will be active from creation date. | |
| SQL_HASH | VARCHAR2 | 240 | Yes | Stores a sql has signature verifying the sql text. | |
| STATUS | VARCHAR2 | 30 | Indicates sql status. Possible values. NULL/ACTIVE/EXPIRED/REJECTED | ||
| 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. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| CST_SQL_OVERRIDE_PK | Unique | Default | CLASS_NAME, SQL_NAME |