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

RHNCHANNELCLONED

DDL script

Columns

NameTypeNullableDefault valueComment
ORIGINAL_IDNUMBER(38)N  
IDNUMBER(38)N  
CREATEDDATEN(sysdate)  
MODIFIEDDATEN(sysdate)  

Primary key:

Constraint NameColumns
RHN_CHANNELCLONE_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_CHANNELCLONE_FCID_FKORIGINAL_ID RHNCHANNEL RHN_CHANNEL_ID_PK CASCADE
RHN_CHANNELCLONE_TCID_FKID RHNCHANNEL RHN_CHANNEL_ID_PK CASCADE

Unique Keys:

Constraint nameColumns
RHN_CHANNELCLONE_FCID_TCID_UQORIGINAL_ID , ID

Options:

OptionSettings
TablespaceDATA_TBS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CHANNELCLONE_FCID_TCID_IDXNORMALNONUNIQUEORIGINAL_ID , ID DDL script
RHN_CHANNELCLONE_ID_PKNORMALUNIQUEID DDL script
RHN_CHANNELCLONE_TCID_FCID_IDXNORMALNONUNIQUEID , ORIGINAL_ID DDL script

Triggers

RHN_CHANNELCLONE_MOD_TRIG

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

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