Re: next integer in serial key

From: Kenneth Gonsalves <lawgon(at)thenilgiris(dot)com>
To: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>, terry(at)ashtonwoodshomes(dot)com
Cc: "Postgresql Sql Group (E-mail)" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: next integer in serial key
Date: 2004-07-22 11:51:30
Message-ID: 04072217213011.01150@thenilgiris.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thursday 22 July 2004 05:45 pm, Oliver Elphick wrote:
> On Thu, 2004-07-22 at 12:48, terry(at)ashtonwoodshomes(dot)com wrote:
> > Actually it does work, call nextval to get your next value, then call
> > your INSERT statement,
> > explicitly giving said value for the serial column. Then you can
> > proceed with using said value in
> > the INSERT statement of the related inserts with foreign keys to it.
> >
> > Alternatively, you can do:
> > INSERT (accepting the default)
> > then SELECT currval(the_sequence_object);
> > then <extra inserts of related foreign key records>
> >
> > NOTE: 2nd method assumes that nobody else called nextval() on the
> > sequence between when you did the
> > insert and when you did the select currval(). Note that being inside
> > a transaction is NOT
> > sufficient, you need an explicit lock on the sequence. I do not
> > recommend the 2nd method, too much
> > can go wrong.
>
> This last paragraph is wrong and irrelevant. It is a point which for
> some reason is continually being misunderstood.
>
> currval() *always* returns the last value generated for the sequence in
> the *current session*. It is specifically designed to do what you are
> suggesting without any conflict with other sessions. There is *never*
> any risk of getting a value that nextval() returned to some other user's
> session.
>
> The downside is that it operates outside the transaction and therefore
> cannot be rolled back. It is also necessary to run nextval() in the
> session (either explicitly or by letting a serial column take its
> default) before you can use currval() on the sequence.

in short, the only safe way of doing this is to commit on insert to the main
table and then query it to get the value to insert in the other tables - and
if the subsequent inserts fail ..................
--
regards
kg

http://www.onlineindianhotels.net - hotel bookings reservations in over 4600
hotels in India
http://www.ootygolfclub.org

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Oliver Elphick 2004-07-22 12:15:26 Re: next integer in serial key
Previous Message terry 2004-07-22 11:48:22 Re: next integer in serial key