postgresql – 在pg_restore中,如何使用postgres连接字符串指定主机/数据库/用户名/密码?

前端之家收集整理的这篇文章主要介绍了postgresql – 在pg_restore中,如何使用postgres连接字符串指定主机/数据库/用户名/密码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用pg_dump时,可以使用postgres连接字符串指定主机/数据库/用户名/密码:
pg_dump postgres://someuser:somepassword@somehost.com:5432/somedatabase

我想为pg_restore使用相同类型的连接字符串:

pg_restore -f dump.dump postgres://userb:somepassword@somehost.com:5432/otherdatabase

但是我收到一个错误

pg_restore: [archiver] could not open input file "postgres://userb:somepassword@somehost.com:5432/otherdatabase": No such file or directory
在Postgresql工具中,只要指定数据库名称,就可以指定连接字符串.

在pg_restore的语法中,dbname与标志一起传递,而不是作为位置参数传递:

$pg_restore --help
pg_restore restores a Postgresql database from an archive created by pg_dump.

Usage:
  pg_restore [OPTION]... [FILE]

General options:
  -d,--dbname=NAME        connect to database name
  ...

所以你应该使用:

pg_restore -d 'postgres://userb:somepassword@somehost.com:5432/otherdatabase' dump.dump

是的,pg_dump和pg_restore之间的用户界面不匹配很糟糕,我希望我们可以改变它,但现在有点晚了.

原文链接:https://www.f2er.com/postgresql/192324.html

猜你在找的Postgre SQL相关文章