Thanks to visit codestin.com
Credit goes to postgrespro.com

Re: Sequenties in pgSQL 7.3.x - Mailing list pgsql-sql

From Przemysław Słupkowski
Subject Re: Sequenties in pgSQL 7.3.x
Date
Msg-id [email protected]
Whole thread Raw
In response to Sequenties in pgSQL 7.3.x  (Przemysław Słupkowski<[email protected]>)
List pgsql-sql
HI
Thanks for help I'm found this solution and this works, but I'm use
something like that
PERFORM setval(seq_name, value);
It looks better but thanks a lot

----- Original Message -----
From: "Richard Huxton" <[email protected]>
To: "Przemysław Słupkowski" <[email protected]>; "Lista
dyskusyjna pgsql-sql" <[email protected]>
Sent: Thursday, September 25, 2003 9:55 AM
Subject: Re: [SQL] Sequenties in pgSQL 7.3.x


On Thursday 25 September 2003 07:36, Przemysław Słupkowski wrote:
> Hi
> I am using postgresql 7.3.x. I am upgrating a database PostgreSQL.
> The main problem is how to change field last value in sequencde which
> exists in database. I created script to read this field and then I'm drop
> the table, do modification and i'm must change this value to another
value.
> But DBMS returns me message like that
> ERROR:  You can't change sequence relation seq_id_seq
> How to do this

Are you using and UPDATE to set last_value? If so, you should use the
setval()
function instead.

SELECT setval('my_seq', 1234);

-- Richard Huxton Archonet Ltd

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings



pgsql-sql by date:

Previous
From: Richard Huxton
Date:
Subject: Re: Sequenties in pgSQL 7.3.x
Next
From: "vijaykumar M"
Date:
Subject: ...