PostgreSQL 错误:几何包含非闭环

发布于 2024-09-09 04:21:40 字数 61 浏览 4 评论 0原文

我拼命尝试使用 pgAdmin III 备份我的数据库,但收到错误:几何包含非闭合环。我该如何解决这个问题?

I am desperately trying to backup using pgAdmin III my database and I receive an error: geometry contains non-closed rings. How can I get around this??

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

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

发布评论

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

评论(1

丶情人眼里出诗心の 2024-09-16 04:21:40

它可以在 shell 中工作吗?例如,如果您执行以下操作,您是否会收到相同的错误?

# Dump global objects, such as user
/usr/lib/postgresql/8.4/bin/pg_dumpall -g -U postgres > /backup/global.sql

# Dump schema of database
/usr/lib/postgresql/8.4/bin/pg_dump -Fp -s -v -f /backup/schema.sql -U postgres dbname

# Dump contents of database
/usr/lib/postgresql/8.4/bin/pg_dump -Fc -v -f /backup/full.dump -Z4 -U postgres dbname

Does it work from the shell? For example if you do the following, do you get the same error?

# Dump global objects, such as user
/usr/lib/postgresql/8.4/bin/pg_dumpall -g -U postgres > /backup/global.sql

# Dump schema of database
/usr/lib/postgresql/8.4/bin/pg_dump -Fp -s -v -f /backup/schema.sql -U postgres dbname

# Dump contents of database
/usr/lib/postgresql/8.4/bin/pg_dump -Fc -v -f /backup/full.dump -Z4 -U postgres dbname
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文