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

RHNERRATACLONEDTMP

DDL script

Columns

NameTypeNullableDefault valueComment
ORIGINAL_IDNUMBER(38)N  
IDNUMBER(38)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_ECLONEDTMP_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_ECLONEDTMP_FEID_FKORIGINAL_ID RHNERRATA RHN_ERRATA_ID_PK CASCADE
RHN_ECLONEDTMP_TEID_FKID RHNERRATATMP RHN_ERRATATMP_ID_PK CASCADE

Unique Keys:

Constraint nameColumns
RHN_ECLONEDTMP_FEID_TEID_UQORIGINAL_ID , ID

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_ECLONEDTMP_FEID_TEID_IDXNORMALNONUNIQUEORIGINAL_ID , ID DDL script
RHN_ECLONEDTMP_ID_PKNORMALUNIQUEID DDL script

Triggers

RHN_ECLONEDTMP_MOD_TRIG

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

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