Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources 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  
MD5SUMVARCHAR2(64)N  
IS_BINARYCHAR(1)N('N')  
CREATEDDATEN(sysdate)  
MODIFIEDDATEN(sysdate)  

Primary key:

Constraint NameColumns
RHN_CONFCONTENT_ID_PKID

Check Constraints:

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

Options:

OptionSettings
TablespaceDATA_TBS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CONFCONTENT_ID_PKNORMALUNIQUEID DDL script
RHN_CONFCONTENT_MD5_UQNORMALNONUNIQUEMD5SUM DDL script
SYS_IL0000011041C00002$$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 := sysdate;
end;