Thread: how many inserts in one transaction?

how many inserts in one transaction?

From
gav
Date:
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?

Best regards,
Alex




Re: [SQL] how many inserts in one transaction?

From
Christopher Sawtell
Date:
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. <<<----