pg_dump导出数据

导出结构

/home/postgres/pgsql/bin/pg_dump -Upostgres -d if -s  --no-tablespaces  -f if_create_obj.sql

导出数据

  • copy形式
/home/postgres/pgsql/bin/pg_dump -Upostgres -d if -a  --no-tablespaces   -f if_init.sql
  • insert语句形式(通过添加–inserts选项)
/home/postgres/pgsql/bin/pg_dump -Upostgres -d if -a  --no-tablespaces  --inserts -f if_init.sql

你可能感兴趣的:(PostgreSQL)