Subject assign same trigger to different tables
Author godefcha
Hello,

I hope my question is not one listed in a well known FAQ somewhere.

I am new to Interbase/Firebird community on the web. So I am not sure
I already found the best places to search.

I use a common tracing mechanism through my whole database.
This mechanism is based on beforeinsert and beforeupdate triggers.

This implies that some tables have both this common tracing mechanism
and specific actions in triggers.
As triggers can now be separated in multiple parts, I can separate the
specific and common parts.

What I would like to do (but do not know if it is possible) is to
assign the 'common part trigger' to different tables.

What I mean is something like

CREATE TRIGGER TRIGNAME FOR TABLE1, TABLE2, TABLE3
ACTIVE BEFORE INSERT POSITION 0
...


Hopes this makes sense.