Re: [SQL] Triggers

From: "Mitch Vincent" <mitch(at)venux(dot)net>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: [SQL] Triggers
Date: 2000-01-04 16:21:26
Message-ID: 012e01bf56cf$bfe777e0$40ee2fd8@venux.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Thanks for the reply Tom (as always)..

I did try both AFTER and BEFORE, neither worked for the insert.. Can you see
anything wrong with the syntax?

I get no errors or anything in the postgres.log, I have debuging set fairly
high too :

StartTransactionCommand
query: insert into invoice
(invoice_number,agencycode,invoice_date,fee_membership,fee_logins,fee_conven
tion,fee_prints,fee_hotlines,fee_postage,fee_ups,fee_late)
values(17623,'PAHO-231','12-01-1999',0.000000,0.000000,5.000000,0.000000,0.0
00000,0.000000,95.000000,0.000000);
ProcessQuery
CommitTransactionCommand

There is an example of one of the inserts, there are 312 done at a time, all
look just like that. It doesn't look like that the trigger is ever getting
called.. Would you agree?

-Mitch

----- Original Message -----
From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Mitch Vincent <mitch(at)venux(dot)net>
Cc: <pgsql-sql(at)postgresql(dot)org>
Sent: Tuesday, January 04, 2000 10:55 AM
Subject: Re: [SQL] Triggers

> "Mitch Vincent" <mitch(at)venux(dot)net> writes:
> > I'm using this funtion via a trigger to total up amounts in several
fields
> > (and adding that value into a total field)..
>
> > CREATE TRIGGER invoice_total_trigger AFTER INSERT OR UPDATE ON invoice
> > FOR EACH ROW EXECUTE PROCEDURE invoice_total_trigger();
>
> > It works for updating but not when you insert a new row. Am I doing it
> > wrong?
>
> Er, don't you want BEFORE INSERT OR UPDATE?
>
> I wouldn't think an AFTER trigger could modify the already-inserted-or-
> updated row...
>
> regards, tom lane
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jan Wieck 2000-01-04 18:42:29 Re: [SQL] Triggers
Previous Message Tom Lane 2000-01-04 15:55:11 Re: [SQL] Triggers