Copying postgresql local to remote database (both with password) - ERROR: option "locale" not recognized

Copying postgresql local to remote database (both with password) - ERROR: option "locale" not recognized

使用 Postgres 12 / Windows 10.

尝试使用以下命令将远程数据库复制到本地主机:

pg_dump -C -h remotehost -p 5432 -U postgres remotedb | psql -h localhost -p 5432 -U postgres localdb

CMD 请求密码 2x。

Password for user postgres: Password:

我先输入localhost,回车,然后输入remotehost,再回车。

这是我在 return 中得到的错误:

SET
SET
SET
SET
SET
 set_config
------------

(1 row)

SET
SET
SET
SET
ERROR:  option "locale" not recognized
LINE 1: ...ting" WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = '...
                                                             ^
ERROR:  database "remotedb" does not exist
\connect: FATAL:  database "remotedb" does not exist
pg_dump: error: could not write to output file: Broken pipe

在测试了 Abelisto 的建议后,我找到了两个问题的答案:

问题 1 的答案

据 Abelisto 告知,postgres 12 没有 create databaselocale 选项,而 postgres 13 有。

postgres 12: postgresql.org/docs/12/sql-createdatabase.html

postgres 13: postgresql.org/docs/13/sql-createdatabase.html

然后,在目标数据库上手动创建数据库并从命令中删除 -C 解决了它。这是最后的命令:

pg_dump -h remotehost -p 5432 -U postgres remotedb | psql -h localhost -p 5432 -U postgres localdb

观察到我安装了 postgres 12 和 13,但是 psql 路径是为 postgres 13 设置的。因此,无论我是否尝试 pg-dump 在 postgres 12 数据库之间,我都会得到 locale 错误,因为 psql 使用 postgres 13 来 运行 命令。

问题 2 的答案

两个密码的输入过程都是正确的:

  1. 目标数据库密码
  2. 回车
  3. 源数据库密码
  4. 回车

您不需要手动创建数据库。
您可以在一行中使用 sedLOCALE 替换为 LC_COLLATE:

您的命令应如下所示:
注意!这仅在您使用脚本(纯文本)文件格式进行备份时有效

pg_dump -C -h remotehost -p 5432 -U postgres remotedb |  sed 's/LOCALE/LC_COLLATE/' | psql -h localhost -p 5432 -U postgres localdb

解释:

脚本转储是包含重建数据库所需的 SQL 命令的纯文本文件。当您将 -C 标志添加到 pg_dump 时,转储文件将包含以下语句:

  • Postgres 12 及以上
CREATE DATABASE yourdb WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8';
  • Postgres 13
CREATE DATABASE yourdb WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'en_US.UTF-8';

通过使用 sed,我们在 pg_dump 流中用 LC_COLLATE 替换 LOCALE 词,这样 psql 就可以在本地恢复数据库。
即使缺少 LC_CTYPE = 'en_US.UTF-8' 也能正常工作。

这是由于我使用 pg_restore 的 13.x 连接到 11.x(目标)和 10.x(源)的数据库造成的。

所以我刚刚安装了 pg_restore 10.x.

brew install postgresql@10
/usr/local/opt/postgresql@10/bin/pg_restore --all-the-args-here

下次我会更加小心地处理 pg_restore--create--clean 参数。