Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Sanity Check Index DDL scrips
Description Columns Primary key Check Constraints Foreign keys Unique Keys Options Indexes Referenced by Triggers Partitions

RHNMESSAGE

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
MESSAGE_TYPENUMBER(38)N  
PRIORITYNUMBER(38)N0  
CREATEDDATEN(sysdate)  
MODIFIEDDATEN(sysdate)  

Primary key:

Constraint NameColumns
RHN_M_ID_PKID

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
RHN_M_MT_FKMESSAGE_TYPE RHNMESSAGETYPE RHN_M_TYPE_ID_PK NO ACTION
RHN_M_PRIORITY_FKPRIORITY RHNMESSAGEPRIORITY RHN_M_PRIORITY_ID_PK NO ACTION

Options:

OptionSettings
TablespaceDATA_TBS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_M_ID_PKNORMALUNIQUEID DDL script

Referenced by:

TableConstraint
RHNSERVERMESSAGE RHN_SM_MESSAGE_ID_FK
RHNTEXTMESSAGE RHN_TM_MESSAGE_ID_FK
RHNUSERMESSAGE RHN_UM_MESSAGE_ID_FK

Triggers

RHN_M_MOD_TRIG

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

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