maya
.public
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
ot_rw_copy2broker_ecmevent_parameter_list()
Parameters
Name
Type
Mode
Definition
/* v20170420 RRB Trigger to copy ecmevent_parameter_list records to a temporary table to be consumed by a consumer process */ DECLARE BEGIN INSERT INTO staging.broker_ecmevent_parameter_list VALUES(NEW.*); RETURN NEW; EXCEPTION WHEN OTHERS THEN RAISE NOTICE '%,%', SQLSTATE, SQLERRM; RETURN NEW; END