不小心将另一个数据库恢复到'postgres'数据库如何更正
Accidentally restored a another database to the 'postgres' database how to correct
我不小心将另一个数据库恢复为默认的 postgres 数据库,我该如何更正这个问题?
ubuntu.
上的 postgres v10
具体来说。登录 postgres
.
以外的数据库
然后:
DROP DATABASE postgres;
CREATE DATABASE postgres; --You don't need to specify template1 it is the default.
然后进行恢复。如果您使用 pg_restore
,请确保您使用 -C
以正确创建数据库。
我不小心将另一个数据库恢复为默认的 postgres 数据库,我该如何更正这个问题? ubuntu.
上的 postgres v10具体来说。登录 postgres
.
然后:
DROP DATABASE postgres;
CREATE DATABASE postgres; --You don't need to specify template1 it is the default.
然后进行恢复。如果您使用 pg_restore
,请确保您使用 -C
以正确创建数据库。