From: | Jure Kobal <jure(dot)kobal(at)gmx(dot)com> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: STARTING SERIAL / BIGSERIAL FIELDS FROM 1. |
Date: | 2009-07-20 19:09:56 |
Message-ID: | 200907202110.00779.jure.kobal@gmx.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
The info for the serial is stored in a seperate table which name should be
something like <table_name>_<column_name>_seq where table_name is the name of
the table and column_name the name of the serial you're using.
It should look something like
sequence_name | last_value | increment_by | ...
-------------------+------------+---------------+ ...
album_seq | 461 | 1 | ...
you would need to change the last_value column.
Regards
Jure
On Monday 20 of July 2009 20:54:33 JORGE MALDONADO wrote:
> How can a serial or bigserial field start from 1 again?
> I need to manually remove all the records from a table and I need these
> kind of fields to start from 1 once again.
>
> With respect,
> Jorge Maldonado
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Wood | 2009-07-20 19:27:41 | Re: How to insert data from a text file |
Previous Message | JORGE MALDONADO | 2009-07-20 18:54:33 | STARTING SERIAL / BIGSERIAL FIELDS FROM 1. |