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

RHNPACKAGESYNCBLACKLIST

DDL script

Columns

NameTypeNullableDefault valueComment
PACKAGE_NAME_IDNUMBER(38)N  
ORG_IDNUMBER(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_PACKAGESYNCBL_OID_FKORG_ID WEB_CUSTOMER WEB_CUSTOMER_ID_PK CASCADE
RHN_PACKAGESYNCBL_PNID_FKPACKAGE_NAME_ID RHNPACKAGENAME RHN_PN_ID_PK NO ACTION

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_PACKAGESYNCBL_OID_IDXNORMALNONUNIQUEORG_ID DDL script
RHN_PACKAGESYNCBL_PNID_OID_UQNORMALUNIQUEPACKAGE_NAME_ID , ORG_ID DDL script

Triggers

RHN_PACKAGESYNCBL_MOD_TRIG

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

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