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

RHNREPOREGENQUEUE

DDL script

Columns

NameTypeNullableDefault valueComment
IDNUMBER(38)N  
CHANNEL_LABELVARCHAR2(128)N  
CLIENTVARCHAR2(128)Y  
REASONVARCHAR2(128)Y  
FORCECHAR(1)Y  
BYPASS_FILTERSCHAR(1)Y  
NEXT_ACTIONTIMESTAMP(6) WITH LOCAL TIME ZONEY(current_timestamp) 
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Primary key:

Constraint NameColumns
RHN_REPOREGENQ_ID_PKID

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_REPOREGENQ_ID_PKNORMALUNIQUEID DDL script

Triggers

RHN_REPO_REGEN_QUEUE_MOD_TRIG

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

REFERENCING NEW AS NEW OLD AS OLD
begin
    if :new.id is null then
        select rhn_repo_regen_queue_id_seq.nextval into :new.id from dual;
    end if;
    :new.modified := current_timestamp;
end;