maya
.public
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
ot_rw_copy2broker_event()
Parameters
Name
Type
Mode
Definition
/* v20170420 RRB Trigger to copy event records to a temporary table to be consumed by a consumer process */ DECLARE BEGIN INSERT INTO staging.broker_event VALUES(NEW.*); RETURN NEW; EXCEPTION WHEN OTHERS THEN RETURN NEW; END