Re: [SQL] Newbie dbadmin out of his league

From: Herouth Maoz <herouth(at)oumail(dot)openu(dot)ac(dot)il>
To: Tim Pizey <tim(at)paneris(dot)co(dot)uk>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Newbie dbadmin out of his league
Date: 1999-09-01 15:45:46
Message-ID: l0313030ab3f2f95055be@[147.233.159.109]
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

At 00:19 +0300 on 28/08/1999, Tom Lane wrote:

> > Presumably I again have to take control of the key values,
> > drop the index
> > copy from tab delimited file containing hard ids
> > create id sequence
> > create index
> > modify id definition
>
> Yup, that's about what you need to do. You can leave the "DEFAULT"
> clause where it is, since it won't be invoked during a COPY that's
> supplying non-default values for the ID column. (A good thing too,
> since I don't think we support ALTER TABLE ADD DEFAULT...)

Hmmm. If it were I, I would have tackled it in a slightly different way:

COPY the data into a temporary table, that doesn't have the id numbers at
all. Thus you don't have to have a counter on the client side, that knows
the last id that's already on the table, etc, etc., and you also don't have
to transfer several extra bytes per row through the postgres port.

Then, when you have a temp table, you can add the values to the main table
with an

INSERT INTO main_table (field1, field2, field3)
SELECT field1, field2, field3
FROM temp_table;

If you don't mention the field that carries the default in this INSERT
statement, it will invoke the default. Dropping the index may still be a
good idea. The temp table shouldn't have an index anyways.

This would save you at least the three last steps in your "recipe".

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Bruce Momjian 1999-09-01 23:23:28 Re: [SQL] entries in pg_shadow
Previous Message Martin Neumann 1999-09-01 15:20:21 How to resume an aborted transaction