How to solve privileges issues when restore PostgreSQL Database

前端 未结 10 1981
Happy的楠姐
Happy的楠姐 2020-12-12 16:19

I have dumped a clean, no owner backup for Postgres Database with the command

pg_dump sample_database -O -c -U

Later, when I restore the databas

10条回答
  •  轮回少年
    2020-12-12 16:49

    Shorter answer: ignore it.

    This module is the part of Postgres that processes the SQL language. The error will often pop up as part of copying a remote database, such as with a 'heroku pg:pull'. It does not overwrite your SQL processor and warns you about that.

提交回复
热议问题