Jeffrey Tenny <[EMAIL PROTECTED]> writes: > If I want to allocate a block of adjacent values from a sequence generator, > is the following statement atomic with respect to the time between > when the call to nextval() and setval()?
> SELECT setval('foo', nextval()+20) ... Nope. > The goal is to get a sequence of 20 values that are all +1 from each other. Do you always want to pull exactly 20 values? If so you could set the sequence's "cache" parameter to 20 (see the CREATE SEQUENCE man page for details). I don't think there's any way at present to get varying sizes of consecutively-allocated blocks. If you need that, it would likely not be real hard to implement a "next_n_vals(seq, n)" variant of nextval() to grab N consecutive values and return the first. But it's not there at the moment. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly