Windows环境中,DOS进入PostgreSQL根目录下的bin目录中
- 导出PostgreSQL数据库中的数据:
$ pg_dump -U postgres -f zhaohuoba_20160805.sql zhaohuoba
- 导入数据时首先创建数据库再用psql导入:
$ createdb newdatabase
$ psql -d newdatabase -U postgres -f database.sql
Windows环境中,DOS进入PostgreSQL根目录下的bin目录中
$ pg_dump -U postgres -f zhaohuoba_20160805.sql zhaohuoba
$ createdb newdatabase
$ psql -d newdatabase -U postgres -f database.sql