实例
- 将 test.dmp 文件转换为普通SQL内容, 并打印到屏幕
pg_restore -U postgres -Fc -f - test.dump
- 将 test.dmp 文件转换为普通SQL内容, 并输出到 test.sql 文件中
pg_restore -U postgres -Fc -f test.sql -v test.dump
- 备份得到自定义格式的数据库文件(dmp)
pg_dump -U postgres -Fc -f test.dmp test
- 恢复备份的 dmp 文件
drop database test;
CREATE DATABASE test WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'C';
pg_restore -U postgres -d test test.dmp