Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Description Columns Primary key Check Constraints Foreign keys Unique Keys Options Indexes Referenced by Triggers Partitions

RHNCONFIGCONTENT

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
CONTENTSBLOBY  
FILE_SIZENUMBER(38)Y  
CHECKSUM_IDNUMBER(38)N  
IS_BINARYCHAR(1)N('N')  
DELIM_STARTVARCHAR2(16)N  
DELIM_ENDVARCHAR2(16)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_CONFCONTENT_ID_PKID

Check Constraints:

Constraint NameCheck Condition
RHN_CONFCONTENT_ISBIN_CKis_binary in ('Y','N')

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_CONFCONTENT_CHSUM_FKCHECKSUM_ID RHNCHECKSUM RHNCHECKSUM_PK NO ACTION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CONFCONTENT_ID_PKNORMALUNIQUEID DDL script
SYS_IL0000020147C00002$$LOBUNIQUE DDL script

Referenced by:

TableConstraint
RHNCONFIGREVISION RHN_CONFREVISION_CCID_FK

Triggers

RHN_CONFCONTENT_MOD_TRIG

Legend: comment 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;