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

RHNCHANNELPERMISSIONROLE

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
LABELVARCHAR2(32)N  
DESCRIPTIONVARCHAR2(128)N  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_CPERM_ROLE_ID_PKID

Unique Keys:

Constraint nameColumns
RHN_CPERM_ROLE_LABEL_UQLABEL

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_CPERM_ROLE_ID_PKNORMALUNIQUEID DDL script
RHN_CPERM_ROLE_LABEL_ID_IDXNORMALNONUNIQUELABEL , ID DDL script

Referenced by:

TableConstraint
RHNCHANNELPERMISSION RHN_CPERM_RID_FK

Triggers

RHN_CPERM_ROLE_MOD_TRIG

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

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