我正在尝试遵循 Postgres Guide,但是我认为以下 restore 命令存在一些问题。
pg_restore --verbose --clean --no-acl --no-owner -h localhost example.dump
它缺少一个目标数据库,不是吗?
但是运行以下命令会引入很多错误,
pg_restore --verbose --clean --no-acl --no-owner -h localhost -d pgguide example.dump
即使上面的命令有效,我认为恢复的数据是不完整的。我意识到在我的User
模式中,我看不到任何first_name
或last_name
Postgres Guide中所示。