我正在尝试将CSV文件上传到Azure Postgresql。但是,当我运行命令时,出现以下错误:
ERROR: must be superuser to COPY to or from a file
但是,Azure Postgresql不允许用户成为超级用户。如何导入文件?
答案 0 :(得分:1)
您是否尝试过\copy
中可用的psql
命令?我相当确定它允许在客户端本地读取/写入文件,并且不需要您成为超级用户。参见https://codeburst.io/two-handy-examples-of-the-psql-copy-meta-command-2feaefd5dd90