RHNCONFIGCONTENT
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ID | NUMBER(38) | N | | |
| CONTENTS | BLOB | Y | | |
| FILE_SIZE | NUMBER(38) | Y | | |
| CHECKSUM_ID | NUMBER(38) | N | | |
| IS_BINARY | CHAR(1) | N | ('N') | |
| DELIM_START | VARCHAR2(16) | N | | |
| DELIM_END | VARCHAR2(16) | N | | |
| CREATED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
| MODIFIED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
Primary key:
| Constraint Name | Columns |
|---|
| RHN_CONFCONTENT_ID_PK | ID
|
Check Constraints:
| Constraint Name | Check Condition |
|---|
| RHN_CONFCONTENT_ISBIN_CK | is_binary in ('Y','N') |
Foreign Keys:

Options:
| Option | Settings |
|---|
| Tablespace | USERS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
| Index Name | Type | Unuqueness | Columns | DDL script |
|---|
| RHN_CONFCONTENT_ID_PK | NORMAL | UNIQUE | ID
| DDL script |
| SYS_IL0000020147C00002$$ | LOB | UNIQUE | | DDL script |
Referenced by:
Triggers
RHN_CONFCONTENT_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_confcontent_mod_trig
before insert or update on rhnConfigContent
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
:new.modified := current_timestamp;
end;