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

RHNSERVERCONFIGCHANNEL

DDL script

Columns

NameTypeNullableDefault valueComment
SERVER_IDNUMBER(38)N  
CONFIG_CHANNEL_IDNUMBER(38)N  
POSITIONNUMBER(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_SERVERCC_CCID_FKCONFIG_CHANNEL_ID RHNCONFIGCHANNEL RHN_CONFCHAN_ID_PK CASCADE
RHN_SERVERCC_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_SERVERCC_CCID_IDXNORMALNONUNIQUECONFIG_CHANNEL_ID DDL script
RHN_SERVERCC_SID_CCID_UQNORMALUNIQUESERVER_ID , CONFIG_CHANNEL_ID DDL script

Triggers

RHN_SERVERCC_MOD_TRIG

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

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