Skip to content
Advertisement

PostgreSQL COPY FROM STDIN not working, but FROM PATH works

In PostgreSQL I previously created a table like so:

JavaScript

The idea is to import multiple csv files into this table. My approach is to use COPY … FROM STDIN instead of COPY … FROM ‘/path/to/file’, as I want to be able to cat from the shell multiple csv files and pipe them to the sql script. The sql script to accomplish this currently looks like this:

JavaScript

An example csv file looks like this

JavaScript

From the shell I try:

JavaScript

But it gives me this error:

JavaScript

However, if in my script I change the COPY command to:

JavaScript

… and simply call

JavaScript

it succeeds.

Why am I getting this error when using cat and STDIN, and not when using the file PATH?

Advertisement

Answer

Because if you use -f, COPY will try to read from that file and not from stdin.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement