如何在 Azure PostgreSQL 服务器上恢复 .dump 或 .sql

How to restore .dump or .sql on Azure PostgreSQL Server

我已经有 .dump 和 .sql 但我无法恢复它。 我使用了 pgAdmin,我可以看到表格,但是在 Azure Studio 和 Navicat 的 it.Same 中没有数据。 我使用 "pg_restore" 恢复文件,但它没有抛出任何错误。

使用数据进行转储和恢复的正确方法是

./pg_dump -U postgres -p 5432 -h <remote_IP> -Ft dbname_source > dump_of_source.sql.tar 
./pg_restore -U postgres -h localhost -p 5432 -d dbname_target dump_of_source.sql.tar