Trigger Efficiency in Oracle

Trigger Efficiency in Oracle

The documentation for Oracle 9.2 and previous versions contains the following paragraph:

AFTER row triggers are slightly more efficient than BEFORE row triggers. With BEFORE row triggers, affected data blocks must be read (logical read, not physical read) once for the trigger and then again for the triggering statement.

For some reason, the documentation in Oracle 10g, and 11g changed as follows:

BEFORE row triggers are slightly more efficient than AFTER row triggers. With AFTER row triggers, affected data blocks must be read (logical read, not physical read) once for the trigger and then again for the triggering statement. Alternatively, with BEFORE row triggers, the data blocks must be read only once for both the triggering statement and the trigger.

It turns out that the latest documentation for Oracle 10g and 11g is incorrect and the documentation for Oracle 9i and previous releases is correct: AFTER row triggers are more efficient than BEFORE row triggers. This is true for all versions of Oracle. To verify this, use the following test:

create table tmptrig as select 0 as i from dual;create trigger tmp$before_trigger before update on tmptrigfor each row    begin  if :new.i is null then null; end if; end;/update tmptrig set i = i + 1;set autot trace stat/set autot offdrop trigger tmp$before_trigger;create or replace trigger tmp$after_trigger after update on tmptrigfor each row     begin  if :new.i is null then null; end if; end;/update tmptrig set i = i + 1;set autot trace stat/set autot offdrop trigger tmp$after_trigger;drop table tmptrig;
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved