Обсуждение: Getting sequence value after inserting many rows at a time

Поиск
Список
Период
Сортировка

Getting sequence value after inserting many rows at a time

От
Maurício Sessue Otta
Дата:
Hi,
 
I have a PHP script that do something like this:
 
INSERT INTO table_with_sequence (field1, field2...., fieldn)
SELECT field1, field2, ..., fieldn FROM table,table
WHERE condition, condition
 
My doubt:
Will the rows just inserted in "table_with_sequence" always be sequencial?
(won't it happen to have X rows from this INSERT, 1 rows from another INSERT
in the middle and the rest rows of the first INSERT?)
 
How can I safely get the first value the INSERT "generated" for
the sequence?
 
[]'s Mauricio

Re: Getting sequence value after inserting many rows at a time

От
Bruno Wolff III
Дата:
On Thu, Jan 09, 2003 at 22:48:11 -0200, Maurício Sessue Otta <mauricio@cristorei.com.br> wrote:
> Hi,
> 
> I have a PHP script that do something like this:
> 
> INSERT INTO table_with_sequence (field1, field2...., fieldn) 
> SELECT field1, field2, ..., fieldn FROM table,table 
> WHERE condition, condition
> 
> My doubt:
> Will the rows just inserted in "table_with_sequence" always be sequencial?
> (won't it happen to have X rows from this INSERT, 1 rows from another INSERT
> in the middle and the rest rows of the first INSERT?)
> 
> How can I safely get the first value the INSERT "generated" for 
> the sequence?

You might want to reconsider the design. You might want to use another
serial column to indicate the grouping. This will allow you to pick out
records inserted as a group.


Re: Getting sequence value after inserting many rows at a time

От
Bruno Wolff III
Дата:
On Sat, Jan 11, 2003 at 12:25:47 -0600, Maurício Sessue Otta <mauricio@cristorei.com.br> wrote:
> Hi,
> 
> I have a PHP script that do something like 
> this:
> 
> INSERT INTO table_with_sequence (field1, 
> field2...., fieldn) 
> SELECT field1, field2, ..., fieldn FROM table,table 
> 
> WHERE condition, condition
> 
> My doubt:
> Will the rows just inserted in 
> "table_with_sequence" always be sequencial?
> (won't it happen to have X rows from this 
> INSERT, 1 rows from another INSERT
> in the middle and the rest rows of the first 
> INSERT?)
> 
> How can I safely get the first value the 
> INSERT "generated" for 
> the sequence?

I wanted to expound on my previous answer some more.

In general sequences are designed to provide an efficient way to generate
unique ids. If you are trying to get any more than uniqness out of them
you need to be careful. And in being careful, you may need to do things
that will make them less efficient.

In particular there can be gaps in sequences and they only have a loose
correlation with time.

I suspect that what you are trying to do is label a group in your example.
This is based on the insert not have a guarenteed order and your concern
about other transactions using sequence numbers between the lowest and
highest numbers used in a specif transaction.

My suggestion is to instead use one sequence number for the whole group.
A sketched example follows:

INSERT INTO newtable (groupid, field1, field2...., fieldn)  SELECT a.groupid, b.field1, b.field2, ..., b.fieldn   FROM
(SELECTnextval('groupid_seq') as groupid) a,     (SELECT * FROM oldtable WHERE condition, condition) b
 

The groupid will be the same for each row inserted by a single instance
of this insert statement. Following sql statements can use
currval('groupid_seq') to get the value used for this insert statement.

Doing things this way will probably make other parts of what you are doing
easier. In particular getting records from a specific group will be much
simpler if they all have the same groupid as opposed to all groupids within
a specific range (that will somehow need to be tracked).