Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Sanity Check Index DDL scrips
Description Columns Primary key Check Constraints Foreign keys Unique Keys Options Indexes Referenced by Triggers Partitions

RHNSATELLITECERT

DDL script

Columns

NameTypeNullableDefault valueComment
LABELVARCHAR2(64)N  
VERSIONNUMBER(38)Y  
CERTBLOBN  
ISSUEDDATEY(sysdate) 
EXPIRESDATEY(sysdate) 
CREATEDDATEN(sysdate)  
MODIFIEDDATEN(sysdate)  

Options:

OptionSettings
TablespaceDATA_TBS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Indexes:

Index NameTypeUnuquenessColumnsDDL script
RHN_SATCERT_LABEL_VERSION_UQNORMALUNIQUELABEL , VERSION DDL script
SYS_IL0000011823C00003$$LOBUNIQUE DDL script

Triggers

RHN_SATCERT_MOD_TRIG

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

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