postgresql使用pg_dump、pg_restore备份及恢复数据库

时间:2021-10-12 02:13:07
pgsql备份数据库和恢复:
过程:
1创建postges数据库
createdb -E UTF8 -h 127.0.0.1-U admin postgres

2.向数据库中创建测试表及测试数据

……

3.备份数据库中表及数据
pg_dump  -h 127.0.0.1 -U admin  -Fc -v postgres > /usr/local/pgsql/db_backup/2012-10-15/postgres.dmp
4.删除postgres数据库
dropdb -h 127.0.0.1 -U admin postgres
5.创建postgres数据库
createdb -E UTF8 -h 127.0.0.1 -U admin postgres
5.恢复数据库中表及数据
pg_restore -h 127.0.0.1 -U admin -d postgres -v /usr/local/pgsql/db_backup/2012-10-15/postgres.dmp