zoukankan      html  css  js  c++  java
  • 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
    
  • 相关阅读:
    手速太慢QAQ
    最短路总结
    放下
    素材收集
    NOI2018旅游记
    -5
    七月
    德国GG了
    本人自传
    bzoj2369
  • 原文地址:https://www.cnblogs.com/yldf/p/11899974.html
Copyright © 2011-2022 走看看