Re: Mass Import/Generate PKs - Mailing list pgsql-general

From Ed L.
Subject Re: Mass Import/Generate PKs
Date
Msg-id 200411061456.03458.pgsql@bluepolka.net
Whole thread Raw
In response to Re: Mass Import/Generate PKs  (Franco Bruno Borghesi <franco@akyasociados.com.ar>)
Responses Re: Mass Import/Generate PKs
List pgsql-general
On Saturday November 6 2004 2:13, Franco Bruno Borghesi wrote:
> the simplest way to do it seems to be adding a SERIAL column to your
> table, and then adding a primary key constraint:
>
> 1)insert data into table
> 2)ALTER TABLE <table> ADD id SERIAL;
> 3)ALTER TABLE <table> ADD CONSTRAINT <table>_pk PRIMARY KEY (id);

You may also need to populate the id column with unique values in between
these two steps with something like "

    update table set id = nextval('table_id_seq'::text) where id isnull"

I don't think SERIAL does that for you.

Ed


pgsql-general by date:

Previous
From: Franco Bruno Borghesi
Date:
Subject: Re: Mass Import/Generate PKs
Next
From: Franco Bruno Borghesi
Date:
Subject: Re: Mass Import/Generate PKs