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

RHNACTIONCONFIGDATE

DDL script

Columns

NameTypeNullableDefault valueComment
ACTION_IDNUMBER(38)N  
START_DATETIMESTAMP(6) WITH LOCAL TIME ZONEN  
END_DATETIMESTAMP(6) WITH LOCAL TIME ZONEY  
IMPORT_CONTENTSCHAR(1)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Check Constraints:

Constraint NameCheck Condition
RHN_ACTIONCD_FILE_IC_CKimport_contents in ('Y','N')

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_ACTIONCD_AID_FKACTION_ID RHNACTION RHN_ACTION_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_ACTIONCD_AID_UQNORMALUNIQUEACTION_ID DDL script

Triggers

RHN_ACTIONCD_MOD_TRIG

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

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