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

时间:2015-02-04 15:10:41

标签: postgresql postgresql-9.3

使用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

1 个答案:

答案 0 :(得分:31)

在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_dumppg_restore之间的用户界面不匹配很糟糕,我希望我们可以改变它,但现在有点晚了。