Re: [SQL] how many inserts in one transaction? - Mailing list pgsql-sql

From Christopher Sawtell
Subject Re: [SQL] how many inserts in one transaction?
Date
Msg-id 00012320272700.20291@berty
Whole thread Raw
In response to how many inserts in one transaction?  (gav <gav@nlr.ru>)
List pgsql-sql
On Sun, 23 Jan 2000, you wrote:
> Hi,
> 
> I have a database created in postgres 6.5.3 and need insert huge
> number (~10-100 thousands) of
> rows in one of tables. To do that quickly I put this part of work in
> transaction. My question is such: should I split this block of
> insertings into many transaction to raise the speed? And
> exists the limit of INSERT-commands that I can do in one transaction?

Do not forget that you can use COPY to create a table in PostgreSQL.

It copies from a delimited operating system text file to a PostgreSQL table.
Someting like this:-


CREATE TABLE district ( number serial, name varchar(25));

copy district from '/home/chris/iopen/schools/database/districts.txt' USING DELIMITERS '~';

--
Sincerely etc.,
NAME       Christopher Sawtell - Support Engineer - iOpen Technologies Ltd.CELL PHONE 021 257 4451ICQ UIN
45863470EMAIL     chris @ iopen . co . nz,  csawtell @ xtra . co . nzCNOTES
ftp://ftp.funet.fi/pub/languages/C/tutorials/sawtell_C.tar.gz
---->>> Please refrain from using HTML attachments in e-mails to me. <<<----



pgsql-sql by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: [SQL] SQL Things
Next
From: "Dmitry A. Alyekhin"
Date:
Subject: (no subject)