Re: in Pl/PgSQL, do commit every 5000 records - Mailing list pgsql-general

From Florian G. Pflug
Subject Re: in Pl/PgSQL, do commit every 5000 records
Date
Msg-id 4411B4E4.902@phlo.org
Whole thread Raw
In response to Re: in Pl/PgSQL, do commit every 5000 records  (Emi Lu <emilu@encs.concordia.ca>)
Responses Re: in Pl/PgSQL, do commit every 5000 records  (Emi Lu <emilu@encs.concordia.ca>)
List pgsql-general
Emi Lu wrote:
> The example I have is:
>
> CREATE OR REPLACE function test() returns boolean AS $$
> DECLARE
> ... ...
>   counter                INTEGER := 0;
> BEGIN
> ... ...
>   query_value := ' .....' ;
>   OPEN curs1 FOR EXECUTE query_value;
>   LOOP
>      FETCH curs1 INTO studid;
>      EXIT WHEN NOT FOUND;
>
>      query_value := ' INSERT INTO ... ...';
>          EXECUTE query_value  ;
>
>      counter := counter + 1 ;
>      IF counter%5000 = 0 THEN
>         counter := 0;
>         COMMIT;
>      END IF;
>
>   END LOOP;
>
>
>   CLOSE curs1;  ...
> END;
Are you aware of the "insert into <table> (<field1>, ..., <fieldn>) select <val1>, .., <valn> from ...."
command? It'd be much faster to use that it it's possible...

greetings, Florian Pflug


pgsql-general by date:

Previous
From: Emi Lu
Date:
Subject: Re: in Pl/PgSQL, do commit every 5000 records
Next
From: Emi Lu
Date:
Subject: Re: in Pl/PgSQL, do commit every 5000 records