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

RHNCHANNELFAMILY

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
ORG_IDNUMBER(38)Y  
NAMEVARCHAR2(128)N  
LABELVARCHAR2(128)N  
PRODUCT_URLVARCHAR2(128)N('http://www.redhat.com/products/')  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_CHANNEL_FAMILY_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_CHANNEL_FAMILY_ORG_FKORG_ID WEB_CUSTOMER WEB_CUSTOMER_ID_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CHANNEL_FAMILY_ID_PKNORMALUNIQUEID DDL script
RHN_CHANNEL_FAMILY_LABEL_UQNORMALUNIQUELABEL DDL script
RHN_CHANNEL_FAMILY_NAME_UQNORMALUNIQUENAME DDL script

Referenced by:

TableConstraint
RHNCHANNELFAMILYMEMBERS RHN_CF_FAMILY_FK
RHNPRIVATECHANNELFAMILY RHN_PRIVCF_CFID_FK
RHNPUBLICCHANNELFAMILY RHN_PUBCF_CFID_FK

Triggers

RHN_CHANNEL_FAMILY_MOD_TRIG

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

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