On Tue, Oct 21, 2003 at 12:49:39PM -0700, CSN wrote:
> For updating sequences after copy importing data (with
> id's).
>
> Is there a transaction-safe way?
Sure:
begin;
lock table table;
select setval('table_id_seq', (select max(id) from table));
commit;
--
Alvaro Herrera (<alvherre[@]dcc.uchile.cl>)
"El sabio habla porque tiene algo que decir;
el tonto, porque tiene que decir algo" (Platon).