Answered Questions

  • What is a Trigger ?

     A piece of logic that is executed at or triggered by a SQL *forms event. 

    Bashartullakhan

    • Aug 17th, 2011

    Triggers are a special PL/SQL construct similar to procedures. However, a procedure is executed explicitly from another block via a procedure call, while a trigger is executed implicitly whenever the triggering event happens. The triggering event is either a INSERT, DELETE, or UPDATE command.