From: | Ian Lawrence Barwick <barwick(at)gmail(dot)com> |
---|---|
To: | Alexander Farber <alexander(dot)farber(at)gmail(dot)com> |
Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Using psql to feed a file line by line to a table column |
Date: | 2013-03-12 16:53:29 |
Message-ID: | CAB8KJ=jn8TEOBVqFuQNGGjzHggPE8Gwsj747t0r9++jXEGGp2Q@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
2013/3/13 Alexander Farber <alexander(dot)farber(at)gmail(dot)com>:
> Hello,
>
> I have a list of 400000 non-english words,
> each on a separate line and in UTF8 format,
> which I'd like to put in the "word" column
> of the following table (also in UTF8 and 8.4.13):
>
> create table good_words (
> word varchar(64) primary key,
> verified boolean not null default false,
> stamp timestamp default current_timestamp
> );
>
> Is there maybe a psql trick for that
> (the "psql --help" doesn't mention
> an "input field separator" option)?
>
> Or do I have to write a Perl-script for that task?
This should work from psql:
\copy good_words(word) from '/path/to/file.txt'
HTH
Ian Barwick
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Farber | 2013-03-12 17:10:53 | Re: Using psql to feed a file line by line to a table column |
Previous Message | Alexander Farber | 2013-03-12 16:45:19 | Using psql to feed a file line by line to a table column |