Re: pgsql problem

From: Christoph Haller <ch(at)rodos(dot)fzk(dot)de>
To: pgsql-sql(at)postgresql(dot)org
Cc: egrignon(at)egrignon(dot)com
Subject: Re: pgsql problem
Date: 2003-02-28 10:08:58
Message-ID: 3E5F353A.9CD80F19@rodos.fzk.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
> > >
> > > CREATE TRIGGER OnCreateUser
> > > AFTER INSERT
> > > ON users FOR EACH ROW
> > > EXECUTE PROCEDURE CreateUserTrig();
> > >
> > Have you thought of using BEFORE INSERT instead of AFTER INSERT?
>
>
> Well, no, but I want to do it only after the insert because I will use
the
> primary key to insert it in an other table, so I have to be sure that
it has
> been inserted.
> Could you explain to me why it doesn't work ?
>
Well, I think Stephan did:
Right now AFAIR after triggers run at the end of the containing
statement
(in this case the select of createuser) which is what causes the
behavior
you're seeing. I'm not sure of a good work around, off hand, for your
case though.

So, what about just skipping the trigger and move the trigger function
to
CreateUser?

Regards, Christoph

Browse pgsql-sql by date

  From Date Subject
Next Message Dawn Hollingsworth 2003-02-28 12:54:48 Query Against a dblink View Takes Too Long to Return
Previous Message Christoph Haller 2003-02-28 09:34:41 Re: Copy from a SELECT