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