Re: Load data from a csv file without using COPY

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: Load data from a csv file without using COPY
Дата
Msg-id D6B45102-778D-4B35-9FB8-B007CE2A7A06@gmail.com
обсуждение исходный текст
Ответ на Load data from a csv file without using COPY  (Ravi Krishna <srkrishna@yahoo.com>)
Ответы Re: Load data from a csv file without using COPY
Re: Load data from a csv file without using COPY
Список pgsql-general
> On 19 Jun 2018, at 22:16, Ravi Krishna <srkrishna@yahoo.com> wrote:
>
> In order to test a real life scenario (and use it for benchmarking) I want to load large number of data from csv
files.  
> The requirement is that the load should happen like an application writing to the database ( that is, no COPY
command). 
> Is there a tool which can do the job.  Basically parse the csv file and insert it to the database row by row.
>
> thanks

I think an easy approach would be to COPY the CSV files into a separate database using psql's \copy command and then
pg_dumpthat as separate insert statements with pg_dump —inserts. 

Alban Hertroys
--
If you can't see the forest for the trees,
cut the trees and you'll find there is no forest.



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

Предыдущее
От: Steve Atkins
Дата:
Сообщение: Re: Load data from a csv file without using COPY
Следующее
От: Ravi Krishna
Дата:
Сообщение: Re: Load data from a csv file without using COPY