My situation:
I want to make a historical table of the use of a truly sensitive table I have in db2.
That table is being accessed by a generic user through some static plans (already compiled).
What I want:
I need to record the time and WHO did an update on it.
I am planing to use triggers, since it seems that fits my needs, but I still don't know how to get within the trigger who "triggered the trigger".
I mean, to know the batch or executable who called the static plan.
Note: since each executable is using a different plan, it would be acceptable to get some kind of plan id.
Is it feasible? How can I do it?
