Postgresql – 备份数据库并恢复不同的所有者?

我在不同服务器上的数据库上进行了备份,并且具有与我需要的不同的作用,使用以下命令:
pg_dump -Fc db_name -f db_name.dump

然后我将备份复制到需要还原数据库的另一个服务器,但没有用于该数据库的所有者。让我们说数据库拥有所有者1,但是在不同的服务器上,我只有owner2,我需要恢复该数据库并更改所有者。

在另一台服务器上恢复时所做的:

createdb -p 5433 -T template0 db_name 
pg_restore -p 5433 --role=owner2 -d db_name db_name.dump

但是,当运行恢复时,我得到这些错误

pg_restore: [archiver (db)] could not execute query: ERROR:  role "owner1" does not exist

我如何指定它会改变所有者?还是不可能?

您应该使用–no-owner选项,这将阻止pg_restore将对象的所有权设置为原始所有者。相反,对象将由-role指定的用户拥有
createdb -p 5433 -T template0 db_name 
pg_restore -p 5433 --no-owner --role=owner2 -d db_name db_name.dump

pg_restore doc

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...