标签: postgresql psql
我想将本地postgresql中的数据以csv格式发送到远程服务器。 类似的东西 copy (select * from table) to /home/ubuntu/a.csv with csv 但是我想在其他服务器
copy (select * from table) to /home/ubuntu/a.csv with csv
答案 0 :(得分:0)
使用psql客户端的\copy功能;这正是你想要的。
psql
\copy
答案 1 :(得分:0)
据我所知,复制命令从本地路径/位置读/写。要在远程服务器上生成输出文件,您需要使用脚本(bash / python)在远程服务器上执行复制命令。