Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: simple trigger - beginner need help

Re: simple trigger - beginner need help

From: Maxim A Sokolnikov <max_at_mpsb.moris.rosmail.com>
Date: Sat, 23 Jan 1999 22:01:15 +0000
Message-ID: <36AA46AB.4B48ECFF@mpsb.moris.rosmail.com>


daud11_at_hotmail.com wrote:

> Hi
>
> I am trying to create a trigger to automatically update column B after column
> A has been updated. For example, let say my table my-table has 2 cols colA
> and colB. I want whenever ColA is updated, colB get updated automatically but
> I am not sure how to write the trigger to do just that. I have tried using
> the code below but it still won't work.
>
> create trigger tr_update
> after update of colA on my-table
> for each row
> BEGIN
     :new.ColB = <some calculaton>;

> END;
>

  Maxim Received on Sat Jan 23 1999 - 16:01:15 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US