Re: Conditional commit inside functions

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Conditional commit inside functions
Дата
Msg-id 162867790812250458x7841b63fja7a5bbb5a8272c09@mail.gmail.com
обсуждение исходный текст
Ответ на Conditional commit inside functions  (Gerhard Wiesinger <lists@wiesinger.com>)
Ответы Re: Conditional commit inside functions  ("Asko Oja" <ascoja@gmail.com>)
Список pgsql-general
Hello,

PostgreSQL has doesn't use rollback segment, so commit over 10000
lines is not necessary, and it is bad.

Regards
Pavel Stehule

2008/12/25 Gerhard Wiesinger <lists@wiesinger.com>:
> Hello!
>
> I want to translate the following Oracle PL/SQL script into plpgsql.
> Especially I'm having problems with the transaction thing. i tried START
> TRANSACTION and COMMIT without success.
>
> Any ideas?
>
> Thanx.
>
> Ciao,
> Gerhard
>
> CREATE OR REPLACE PROCEDURE insert_1Mio
> IS
>  maxcommit NUMBER;
> BEGIN
>  maxcommit := 10000;
>
>  FOR i IN 1..1000000 LOOP
>    INSERT INTO employee (id, department, firstname, lastname) VALUES (i, i,
> 'John' || to_char(i), 'Smith' || to_char(i));
>    IF MOD(i, maxcommit) = 0 THEN
>      COMMIT;
>    END IF;
>  END LOOP;
>
>  COMMIT;
> END;
>
>
>
> --
> http://www.wiesinger.com/
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

В списке pgsql-general по дате отправления:

Предыдущее
От: Gerhard Wiesinger
Дата:
Сообщение: Conditional commit inside functions
Следующее
От: "Grzegorz Jaśkiewicz"
Дата:
Сообщение: Re: lack of consequence with domains and types