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

RHNCONFIGFILENAME

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
PATHVARCHAR2(1024)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_CFNAME_ID_PKID

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CFNAME_ID_PKNORMALUNIQUEID DDL script
RHN_CFNAME_PATH_UQNORMALUNIQUEPATH DDL script

Referenced by:

TableConstraint
RHNACTIONCONFIGFILENAME RHN_ACTIONCF_NAME_CFNID_FK
RHNCONFIGFILE RHN_CONFFILE_CFNID_FK
RHNCONFIGINFO RHN_CONFINFO_SYMLINK_FK
RHNFILELISTMEMBERS RHN_FLMEMBERS_CFNID_FK

Triggers

RHN_CFNAME_MOD_TRIG

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

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