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

RHNSERVERINSTALLINFO

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
SERVER_IDNUMBER(38)N  
INSTALL_METHODVARCHAR2(32)N  
ISO_STATUSNUMBER(38)Y  
MEDIASUMVARCHAR2(64)Y  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_SERVER_INSTALL_INFO_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_SERVER_INSTALL_INFO_SID_FKSERVER_ID RHNSERVER RHN_SERVER_ID_PK NO ACTION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_SERVER_INSTALL_INFO_ID_PKNORMALUNIQUEID DDL script
RHN_SERVER_INSTALL_INFO_SID_UQNORMALUNIQUESERVER_ID DDL script

Triggers

RHN_S_INST_INFO_MOD_TRIG

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

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