PostGIS的备份与恢复

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 < e:\service.bak


-h  host

-p post

-U user

-d database


详细参数

psql --help




你可能感兴趣的:(数据库,postgis)