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

RHNSERVERCUSTOMDATAVALUE

DDL script

Columns

NameTypeNullableDefault valueComment
SERVER_IDNUMBER(38)N  
KEY_IDNUMBER(38)N  
VALUEVARCHAR2(4000)Y  
CREATED_BYNUMBER(38)Y  
LAST_MODIFIED_BYNUMBER(38)Y  
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_SCDV_CB_FKCREATED_BY WEB_CONTACT WEB_CONTACT_PK SET NULL
RHN_SCDV_KID_FKKEY_ID RHNCUSTOMDATAKEY RHN_CDATAKEY_PK NO ACTION
RHN_SCDV_LMB_FKLAST_MODIFIED_BY WEB_CONTACT WEB_CONTACT_PK SET NULL
RHN_SCDV_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_SCDV_KID_IDXNORMALNONUNIQUEKEY_ID DDL script
RHN_SCDV_SID_KID_UQNORMALUNIQUESERVER_ID , KEY_ID DDL script

Triggers

RHN_SCDV_MOD_TRIG

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

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