将 CSV 文件导入 PostgreSQL

发布于 2024-09-10 13:56:58 字数 463 浏览 1 评论 0原文

使用 MySQL Administrator GUI 工具,我将从 sql 转储文件检索的一些数据表导出到 csv 文件。

然后,我尝试使用 postgres COPY 命令将这些 CSV 文件导入到 PostgreSQL 数据库中。我尝试输入

COPY articles FROM '[insert .csv dir here]' DELIMITERS ',' CSV;

相同的命令,但不带分隔符部分。

我收到一条错误消息:

ERROR: invalid input syntax for integer: "id"
CONTEXT: COPY articles, line 1, column id: "id"

总而言之,我的问题是这个问题的一些想法和解决方案是什么?这可能与我创建 csv 文件的方式有关吗?或者我在其他地方犯了菜鸟错误?

Using MySQL Administrator GUI tool I have exported some data tables retrieved from an sql dumpfile to csv files.

I then tried to import these CSV files into a PostgreSQL database using the postgres COPY command. I've tried entering

COPY articles FROM '[insert .csv dir here]' DELIMITERS ',' CSV;

and also the same command without the delimiters part.

I get an error saying

ERROR: invalid input syntax for integer: "id"
CONTEXT: COPY articles, line 1, column id: "id"

In conclusion my question is what are some thoughts and solutions to this problem? Could it possibly be something to do with the way I created the csv files? or have I made a rookie mistake elsewhere?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

篱下浅笙歌 2024-09-17 13:56:58

如果您有标题列,只需将标题限定符添加到复制语句中即可
跳过该行的文档
http://www.postgresql.org/docs/8.4/static/ sql-copy.html

If you have header columns just add the header qualifier to the copy statement as per
documentation to skip that line
http://www.postgresql.org/docs/8.4/static/sql-copy.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文