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

RHNCHANNELFAMILYMEMBERS

DDL script

Columns

NameTypeNullableDefault valueComment
CHANNEL_IDNUMBER(38)N  
CHANNEL_FAMILY_IDNUMBER(38)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_CF_FAMILY_FKCHANNEL_FAMILY_ID RHNCHANNELFAMILY RHN_CHANNEL_FAMILY_ID_PK NO ACTION
RHN_CF_MEMBERS_C_FKCHANNEL_ID RHNCHANNEL RHN_CHANNEL_ID_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CF_C_UQNORMALUNIQUECHANNEL_ID DDL script
RHN_CF_MEMBER_CF_C_IDXNORMALNONUNIQUECHANNEL_FAMILY_ID , CHANNEL_ID DDL script

Triggers

RHN_CF_MEMBER_MOD_TRIG

Legend: comment string keyword reserved word operator
CREATE TRIGGER 
rhn_cf_member_mod_trig
before insert or update on rhnChannelFamilyMembers
for each row

REFERENCING NEW AS NEW OLD AS OLD
begin
	:new.modified := current_timestamp;
end;