| From: | Bruno Wolff III <bruno(at)wolff(dot)to> |
|---|---|
| To: | Raymond Pau <rpau(at)yahoo(dot)com> |
| Cc: | pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: How to make sequence skip existing key in table? |
| Date: | 2003-02-18 13:43:11 |
| Message-ID: | 20030218134311.GB11307@wolff.to |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
On Tue, Feb 18, 2003 at 02:01:34 -0800,
Raymond Pau <rpau(at)yahoo(dot)com> wrote:
> Hi List,
Please don't start new threads by replying to other messages on the list.
This screws up threading of messages, which is useful for following specific
discussions.
> I am using sequence to generate to a list of unique
> key id that will be used as the primary key for some
> tables.
>
> My question is when the sequence wraps over to the
> minimum value(1), how can I ensure that the next id is
> not in the tables?
My suggestion is to use the bigserial type. This uses bigint as the underlying
type and you are not likely to roll over a 64 bit integer unless you are
wasting a lot of serial values for each one you actually use.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruno Wolff III | 2003-02-18 14:12:43 | Re: " Adding missing FROM-clause entry for table .... " problem. |
| Previous Message | Christoph Haller | 2003-02-18 11:51:27 | Re: " Adding missing FROM-clause entry for table .... " problem. |