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

WEB_USER_CONTACT_PERMISSION

DDL script

Columns

NameTypeNullableDefault valueComment
WEB_USER_IDNUMBER(38)N  
EMAILCHAR(1)Y('N')  
MAILCHAR(1)Y('N')  
CALLCHAR(1)Y('N')  
FAXCHAR(1)Y('N')  
CREATEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  
MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONEN(current_timestamp)  

Check Constraints:

Constraint NameCheck Condition
WUCP_CALL_CKcall in ('Y','N')
WUCP_EMAIL_CKemail in ('Y','N')
WUCP_FAX_CKfax in ('Y','N')
WUCP_MAIL_CKmail in ('Y','N')

Foreign Keys:

Constraint NameColumnsReferenced tableReferenced ConstraintOn Delete Rule
CONTPERM_WBUSERID_FKWEB_USER_ID WEB_CONTACT WEB_CONTACT_PK CASCADE

Options:

OptionSettings
TablespaceUSERS
Index OrganizedNo
Generated by OracleNo
ClusteredNo
NestedNo
TemporaryNo

Triggers

WEB_USER_CP_TIMESTAMP

Legend: comment string keyword reserved word operator
CREATE TRIGGER 
web_user_cp_timestamp
BEFORE INSERT OR UPDATE ON web_user_contact_permission
FOR EACH ROW

REFERENCING NEW AS NEW OLD AS OLD
BEGIN
  :new.modified := current_timestamp;
END;