Copying entire tsv record (from file) into a single field - Mailing list pgsql-general

From Allan Kamau
Subject Copying entire tsv record (from file) into a single field
Date
Msg-id AANLkTimiZa1t-hidDUKufi_aR2aVjQ2b8QYAyaWoh8mD@mail.gmail.com
Whole thread Raw
Responses Re: Copying entire tsv record (from file) into a single field  (Raymond O'Donnell <rod@iol.ie>)
List pgsql-general
I would like to use copy to populate a single row in table with data
from a tsv file for further transformations.
I seem not find a way to stop copy from seeing that the tsv file does
indeed contain fields.
This my current query

        COPY raw_data
        (
        raw_record
        )
        FROM
        '/tmp/some.tsv'
        ;

Allan.

pgsql-general by date:

Previous
From: Grzegorz Jaśkiewicz
Date:
Subject: Re: if-clause to an exiting statement
Next
From: Raymond O'Donnell
Date:
Subject: Re: Copying entire tsv record (from file) into a single field