Re: postgres pg_bulkload c filter function in c programming

From: Jan de Visser <jan(at)de-visser(dot)net>
To: pgsql-general(at)postgresql(dot)org
Cc: rajmhn <rajmhn(dot)ram(at)gmail(dot)com>
Subject: Re: postgres pg_bulkload c filter function in c programming
Date: 2016-12-29 14:01:39
Message-ID: 4136218.LLb4IiLln5@coyote
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thursday, December 29, 2016 5:10:08 AM EST rajmhn wrote:
> Gurus,
>
> Reading the data from file and loading it using pg_bulkload- C filter. As
> per documentation, C filter is much faster than SQL filter.
>
> I'm new to C. Gone through this documentation. Not clear, how to start.
> https://www.postgresql.org/docs/current/static/xfunc-c.html.
>
> Can someone kindly guide me to create C code, so that it can be called in
> postgres function?
>

It seems to me it would be much easier to load the data into a temporary
table, and from there transform into the form you need it to be. If you're not
experienced in C (and probably even if you are) you can import *a lot* of data
in the time it would take you to develop that custom filter.

Besides, your requirements don't appear to be that difficult.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message rajmhn 2016-12-29 14:38:09 Re: postgres pg_bulkload c filter function in c programming
Previous Message Rich Shepard 2016-12-29 13:59:20 Re: Er Data Modeller for PostgreSQL