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

RHNCHANNELERRATA

DDL script

Columns

NameTypeNullableDefault valueComment
CHANNEL_IDNUMBER(38)N  
ERRATA_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_CE_CID_FKCHANNEL_ID RHNCHANNEL RHN_CHANNEL_ID_PK CASCADE
RHN_CE_EID_FKERRATA_ID RHNERRATA RHN_ERRATA_ID_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CE_CE_UQNORMALUNIQUECHANNEL_ID , ERRATA_ID DDL script
RHN_CE_EID_IDXNORMALNONUNIQUEERRATA_ID DDL script

Triggers

RHN_CHANNEL_ERRATA_MOD_TRIG

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

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