Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. badamsmt

    Row vs Statement Level Trigger

    Thanks a lot! That puts it all into perspective. You have been a great help!
  2. badamsmt

    Row vs Statement Level Trigger

    Ah... For example, if I wrote a statement such as this and executed it: Update Inventory Set balance = 0 Where balance < 0 and it updated 10 records or rows, a ROW level trigger on the 'balance' field would execute 10 times but the STATEMENT level trigger on the 'balance' field would...
  3. badamsmt

    Row vs Statement Level Trigger

    The ASA reference manual for 'CREATE TRIGGER' shows an option of ROW and STATEMENT. Syntax CREATE TRIGGER trigger-name trigger-time trigger-event [, trigger-event,.. ] ... [ ORDER integer ] ON table-name ... [ REFERENCING [ OLD AS old-name ] [ NEW...
  4. badamsmt

    Row vs Statement Level Trigger

    What is the difference between a ROW level trigger and a STATEMENT level trigger? Could you give an example?

Part and Inventory Search

Back
Top