[原]postgreSQL 数据库备份和恢复
Posted by bianbian on 2006-11-19 17:30
本文Tags: PostgreSQL, 备份, 恢复, 数据库
备份:
./pg_dump -U 用户名 -c -Fp 数据库名 -f 文件.sql
恢复:
./psql -U 用户名 < 文件.sql
遵守创作共用协议,转载请链接形式注明来自http://bianbian.org 做人要厚道
Posted by bianbian on 2006-11-19 17:30
本文Tags: PostgreSQL, 备份, 恢复, 数据库
备份:
./pg_dump -U 用户名 -c -Fp 数据库名 -f 文件.sql
恢复:
./psql -U 用户名 < 文件.sql