Sequence not updated after a copy ?

Lists: pgsql-sql
From: "GRIMOIS Eric" <eric(dot)grimois(at)cpam-cergypontoise(dot)cnamts(dot)fr>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Sequence not updated after a copy ?
Date: 2002-03-21 17:21:50
Message-ID: 000c01c1d0fc$e36d1f40$3d04a837@PXXXX
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

Hi All

Does 'COPY table FROM...' command update the last_value field of the
sequence(s) related to the table ?
Is a setval( ) function required after completion ? In this case, what's the
best command for doing that ?

Thanks

Eric GRIMOIS
Analyste programmeur
SEI - CPAM du Val d'Oise
01.34.22.24.56


From: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
To: GRIMOIS Eric <eric(dot)grimois(at)cpam-cergypontoise(dot)cnamts(dot)fr>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Sequence not updated after a copy ?
Date: 2002-03-21 19:01:24
Message-ID: 1016737285.21170.128.camel@linda
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

On Thu, 2002-03-21 at 17:21, GRIMOIS Eric wrote:
> Hi All
>
> Does 'COPY table FROM...' command update the last_value field of the
> sequence(s) related to the table ?

No

> Is a setval( ) function required after completion ? In this case, what's the
> best command for doing that ?

SELECT setval('sequence_name',
(SELECT MAX(column_name)
FROM table_name)
);

--
Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk
Isle of Wight http://www.lfix.co.uk/oliver
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C

"Thy word have I hid in mine heart, that I might not
sin against thee." Psalms 119:11


From: Jeff Eckermann <jeff_eckermann(at)yahoo(dot)com>
To: GRIMOIS Eric <eric(dot)grimois(at)cpam-cergypontoise(dot)cnamts(dot)fr>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Sequence not updated after a copy ?
Date: 2002-03-21 20:34:13
Message-ID: 20020321203413.58637.qmail@web20806.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql


--- GRIMOIS Eric
<eric(dot)grimois(at)cpam-cergypontoise(dot)cnamts(dot)fr> wrote:
> Hi All
>
> Does 'COPY table FROM...' command update the
> last_value field of the
> sequence(s) related to the table ?

No. I assume you have specified values in your source
file that take the place of the sequence-supplied
values, otherwise the COPY operation would almost
certainly fail.

> Is a setval( ) function required after completion ?

Yes: preferably before, if you want the sequence to be
available to other users while you are doing the
import.

> In this case, what's the
> best command for doing that ?

I can't find the reference in the docs just now, but I
believe it's:
SELECT setval ('sequence_name', new_value);

>
> Thanks
>
> Eric GRIMOIS
> Analyste programmeur
> SEI - CPAM du Val d'Oise
> 01.34.22.24.56
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please
> send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org
> so that your
> message can get through to the mailing list cleanly

__________________________________________________
Do You Yahoo!?
Yahoo! Movies - coverage of the 74th Academy Awards
http://movies.yahoo.com/


From: "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au>
To: "Jeff Eckermann" <jeff_eckermann(at)yahoo(dot)com>, "GRIMOIS Eric" <eric(dot)grimois(at)cpam-cergypontoise(dot)cnamts(dot)fr>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Sequence not updated after a copy ?
Date: 2002-03-22 01:59:09
Message-ID: GNELIHDDFBOCMGBFGEFOOENECBAA.chriskl@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql