Execute COPY command in remote database using local file
Asked Answered
W

1

6

I'm trying to execute the Postgres COPY command.

COPY warehouse_terminal.test_table FROM 'C:\file.csv' DELIMITERS E'\t'
     CSV HEADER QUOTE E'\"' ESCAPE E'\\' NULL AS '';

The problem is, the db where I'm going to use this is remote, and the file "file.csv" is in my local machine in C:\. As a result, the file is not read.
Remote db, but local file. How can I get this working?

Watters answered 24/9, 2014 at 2:6 Comment(0)
P
11

Use \copy of the psql client on your local machine, it's a wrapper for SQL COPY for just this purpose.

See:

Parlor answered 24/9, 2014 at 2:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.