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

RHNKICKSTARTPACKAGE

DDL script

Columns

NameTypeNullableDefault valueComment
KICKSTART_IDNUMBER(38)N  
PACKAGE_NAME_IDNUMBER(38)N  
POSITIONNUMBER(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_KSPACKAGE_KSID_FKKICKSTART_ID RHNKSDATA RHN_KS_ID_PK CASCADE
RHN_KSPACKAGE_PNID_FKPACKAGE_NAME_ID RHNPACKAGENAME RHN_PN_ID_PK NO ACTION

Unique Keys:

Constraint nameColumns
RHN_KSPACKAGE_NAME_UQKICKSTART_ID , PACKAGE_NAME_ID
RHN_KSPACKAGE_POS_UQKICKSTART_ID , POSITION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_KSPACKAGE_NAME_UQNORMALUNIQUEKICKSTART_ID , PACKAGE_NAME_ID DDL script
RHN_KSPACKAGE_POS_UQNORMALUNIQUEKICKSTART_ID , POSITION DDL script

Triggers

RHN_KSPACKAGE_MOD_TRIG

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

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