Most of our tables have one BEFORE INSERT OR UPDATE
trigger, in order to set ID\'s BEFORE INSERT
and to set creation / modification users / dates <
I would suggest that you investigate the impact of using the Sequence in the trigger - when creating the sequence seed the sequence with a cache value (CACHE specifies how many values of the sequence the database preallocates and keeps in memory for faster access). I have experienced factors far greater the 8 associated with sequences. In any case, in order to compare the impact of a trigger in the terms of context switching the use of the Sequence should be either eliminated for the test or taken into consideration when evaluating the results.