RHNCONFIGCONTENT
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ID | NUMBER(38) | N | | |
| CONTENTS | BLOB | Y | | |
| FILE_SIZE | NUMBER(38) | Y | | |
| MD5SUM | VARCHAR2(64) | N | | |
| IS_BINARY | CHAR(1) | N | ('N')
| |
| CREATED | DATE | N | (sysdate)
| |
| MODIFIED | DATE | N | (sysdate)
| |
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') |
Options:
| Option | Settings |
|---|
| Tablespace | DATA_TBS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
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 := sysdate;
end;