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

RHNACTIONKICKSTARTFILELIST

DDL script

Columns

NameTypeNullableDefault valueComment
ACTION_KS_IDNUMBER(38)N  
FILE_LIST_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_ACTIONKSFL_ASKID_FKACTION_KS_ID RHNACTIONKICKSTART RHN_ACTIONKS_ID_PK CASCADE
RHN_ACTIONKSFL_FLID_FKFILE_LIST_ID RHNFILELIST RHN_FILELIST_ID_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_ACTIONKSFL_AKSID_FLID_UQNORMALUNIQUEACTION_KS_ID , FILE_LIST_ID DDL script
RHN_ACTIONKSFL_FLID_IDXNORMALNONUNIQUEFILE_LIST_ID DDL script

Triggers

RHN_ACTIONKSFL_MOD_TRIG

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

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