1、备份
命令提示中输入
pg_dump -U postgres -t service postgis20 > e:\service.bak
-U 代表 user
-t 代表 Table
postgis20最后一个为数据库名称
具体详细参数
pg_dump--help
2、恢复
命令提示行中
psql -h localhost -p 5432 -U postgres -d postgis20
-h host
-p post
-U user
-d database
详细参数
psql--help
1、备份
命令提示中输入
pg_dump -U postgres -t service postgis20 > e:\service.bak
-U 代表 user
-t 代表 Table
postgis20最后一个为数据库名称
具体详细参数
pg_dump--help
2、恢复
命令提示行中
psql -h localhost -p 5432 -U postgres -d postgis20
-h host
-p post
-U user
-d database
详细参数
psql--help