Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试执行 PostgresCOPY命令。
COPY
COPY warehouse_terminal.test_table FROM 'C:\file.csv' DELIMITERS E'\t' CSV HEADER QUOTE E'\"' ESCAPE E'\\' NULL AS '';
问题是,我要使用它的数据库是远程的,文件“file.csv”在我的本地机器中C:\。结果,文件未被读取。 远程数据库,但本地文件。我怎样才能得到这个工作?
C:\
\copy在psql您的本地机器上使用客户端,它COPY只是用于此目的的包装器。
\copy
psql
更多细节: