Adding a trigger to an existing table

davidvilla

Member
Hi,
I need to add a new trigger to an existing table. Is there a way that I can do this by putting some statements in a delta df and loading the df file?

Thanks.
 
The delta can contains the trigger.
Example:

UPDATE TABLE "abc"
TABLE-TRIGGER "DELETE" OVERRIDE PROCEDURE "abc_d.p" CRC "?"
TABLE-TRIGGER "WRITE" OVERRIDE PROCEDURE "abc_w.p" CRC "?"
 
Back
Top