From: | CoL <col(at)mportal(dot)hu> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Loading text files into a text attribute |
Date: | 2004-04-02 10:23:07 |
Message-ID: | c4jeube7jc4jeub$2e7j$1@news.hub.org@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
hi,
BARTKO, Zoltan wrote:
> Hello folks,
>
> I have the following problem:
>
> I have a bunch of text files, I want to load them into a table where each
> file will be stored in one row.
>
> Question 1: Is there any way how to do this in psql?
>
> AFAIK the \copy command interprets \n as a new line and so I can't get it
> done what I want. So I wrote a C program that parses my text files and
> anywhere it sees a \n it puts \\n and then concatenates the files, etc. -
> quite complicated.
>
> Question 2: Is there a simpler way of doing this?
you can make a plperlu, untrested perl function, which reads the entire
file, than:
insert into table (text) values (plperufunction('/path/to/file'));
C.
From | Date | Subject | |
---|---|---|---|
Next Message | Sean Chittenden | 2004-04-02 10:26:26 | Optimization on UPDATEs and FOREIGN KEYs... |
Previous Message | JM | 2004-04-02 08:53:03 | glibc update.. effect on PG |