Re: error handling - Mailing list pgsql-novice

From Sean Davis
Subject Re: error handling
Date
Msg-id 44627196.5010201@mail.nih.gov
Whole thread Raw
In response to Re: error handling  (Verena Ruff <lists@triosolutions.at>)
Responses Re: error handling
List pgsql-novice
Verena Ruff wrote:
> Sean Davis schrieb:
>
>> Just keep in mind that the trigger runs on EVERY insert, even those for
>> which the unique clause is not violated.  If that is the behavior you
>> need,
>> then use the trigger.  However, if you know that after you have clean
>> data
>> in the table, you will not be inserting "duplicates" (I think this is the
>> typical case), then a trigger may not be the way to go.
>>
>
> These were my concerns in the first place I was thinking about using
> triggers. Maybe I haven't really understood your suggestion right. When
> would the temporary table be created? Isn't it neccessary to create it
> on every insert, too? With wich statement could I do this without using
> a trigger which is fired on every insert?
>
> Thanks for your patience.

No problem.  I was thinking that you had a bunch of data that you wanted
to load ONCE, clean up, and then you would NOT  be inserting duplicated
values.  If you are going to be inserting duplicates potentially with
every insert, I think that a trigger is the only way to go on the DB
side of things.  Of course, you could do things on the client side, as
well (do a lookup, find nothing--do insert, find something--do nothing
or do update).

Sean

pgsql-novice by date:

Previous
From: Terry Lee Tucker
Date:
Subject: Re: difference between := and =
Next
From: Tom Lane
Date:
Subject: Re: Vacuuming static tables.