我尝试使用以下命令恢复PostgreSQL 9.5数据库:
pg_restore -C -d postgres -U postgres --no-owner --role=jsmith the_data.dump
由于我恢复的群集与群集的转储不同,因此某些角色不存在。
还原过程中出现了许多错误,但所有错误都涉及GRANT
和RESTORE
。我可以假设实际数据本身已经恢复而没有丢失或修改吗?
答案 0 :(得分:2)
可以忽略 @Override
public void onBackPressed() {
Intent intent=new Intent(Caly_act.this,MainActivity_tab.class);
startActivity(intent);
finish();
}
和GRANT
错误。它们不会影响数据加载。
如果您希望以后再避免这些消息,可以使用REVOKE
上的-x
参数(您也可以使用同义词pg_restore
或--no-acl
)。
这会阻止--no-privileges
尝试设置授权。
pg_restore docs https://www.postgresql.org/docs/current/static/app-pgrestore.html