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

RHNACTIONCONFIGREVISIONRESULT

DDL script

Columns

NameTypeNullableDefault valueComment
ACTION_CONFIG_REVISION_IDNUMBER(38)N  
RESULTBLOBY  
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_ACTIONCFR_ACRID_FKACTION_CONFIG_REVISION_ID RHNACTIONCONFIGREVISION RHN_ACTIONCR_ID_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_ACTIONCFR_ACRID_UQNORMALUNIQUEACTION_CONFIG_REVISION_ID DDL script
SYS_IL0000020169C00002$$LOBUNIQUE DDL script

Triggers

RHN_ACTIONCFR_MOD_TRIG

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

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