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

RHNKICKSTARTSCRIPT

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
SCRIPT_NAMEVARCHAR2(40)Y  
KICKSTART_IDNUMBER(38)N  
POSITIONNUMBER(38)N  
SCRIPT_TYPEVARCHAR2(4)N  
CHROOTCHAR(1)N('Y')  
ERROR_ON_FAILCHAR(1)N('N')  
RAW_SCRIPTCHAR(1)N('Y')  
INTERPRETERVARCHAR2(80)Y  
DATABLOBY  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_KSSCRIPT_ID_PKID

Check Constraints:

Constraint NameCheck Condition
RHN_KSSCRIPT_CHROOT_CKchroot in ('Y','N')
RHN_KSSCRIPT_ERRORONFAIL_CKerror_on_fail in ('Y','N')
RHN_KSSCRIPT_RAWSCRIPT_CKraw_script in ('Y','N')
RHN_KSSCRIPT_ST_CKscript_type in ('pre','post')

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_KSSCRIPT_KSID_FKKICKSTART_ID RHNKSDATA RHN_KS_ID_PK CASCADE

Unique Keys:

Constraint nameColumns
RHN_KSSCRIPT_KSID_POS_UQKICKSTART_ID , POSITION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_KSSCRIPT_ID_IDXNORMALNONUNIQUEID DDL script
RHN_KSSCRIPT_KSID_POS_IDXNORMALNONUNIQUEKICKSTART_ID , POSITION DDL script
SYS_IL0000020606C00010$$LOBUNIQUE DDL script

Triggers

RHN_KSSCRIPT_MOD_TRIG

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

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