Re: really quick multiple inserts can use COPY?

Поиск
Список
Период
Сортировка
От Rajesh Kumar Mallah
Тема Re: really quick multiple inserts can use COPY?
Дата
Msg-id a97c77030612110901j3e826675o56e23dfd175ddce4@mail.gmail.com
обсуждение исходный текст
Ответ на really quick multiple inserts can use COPY?  ("Jens Schipkowski" <jens.schipkowski@apus.co.at>)
Список pgsql-performance
> So, my questions:
> Is it possible to use COPY FROM STDIN with JDBC?

Should be. Its at least possible using DBI and DBD::Pg (perl)


 my $copy_sth = $dbh -> prepare( "COPY
general.datamining_mailing_lists (query_id,email_key) FROM STDIN;") ;
  $copy_sth -> execute();
  while (my ($email_key ) = $fetch_sth -> fetchrow_array ()) {
          $dbh -> func("$query_id\t$email_key\n", 'putline');
  }
  $fetch_sth -> finish();
  $dbh -> func("\\.\n", 'putline');
  $dbh -> func('endcopy');
  $copy_sth->finish();

Some JDBC expert would tell better how its done with JDBC.


> Will it bring performance improvement compared to SELECT UNION solution?

COPY is quite faast.

Regds
mallah.

>
> many thanks in advance,
> Jens Schipkowski
>
> --
> **
> APUS Software GmbH
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
>        subscribe-nomail command to majordomo@postgresql.org so that your
>        message can get through to the mailing list cleanly
>

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

Предыдущее
От: Andreas Kretschmer
Дата:
Сообщение: Re: really quick multiple inserts can use COPY?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: really quick multiple inserts can use COPY?