postgresSQLエクスポートデータ


     postgres      , pgAdmin           ,   postgre         sql  ,    :

  postgres     bin   

    windows:

        C:\Program Files\PostgreSQL\10\bin

    pg_dump  :

      :  pg_dump [  ]... [     ]

    :

  -f, --file=FILENAME                  

  -F, --format=c|d|t|p                (  ,   , tar)

                                  (   ))

  -v, --verbose                    

  -V, --version                      ,    

  -Z, --compress=0-9                     

  --lock-wait-timeout=TIMEOUT              

  -?, --help                        ,     

        :

  -a, --data-only                   ,     

  -b, --blobs                           

  -c, --clean                         ,   (  )     

  -C, --create                         ,       

  -E, --encoding=ENCODING         ENCODING       

  -n, --schema=SCHEMA                    

  -N, --exclude-schema=SCHEMA           

  -o, --oids                          OID

  -O, --no-owner                     ,          

  -s, --schema-only                 ,      

  -S, --superuser=NAME                         

  -t, --table=TABLE                     

  -T, --exclude-table=TABLE             

  -x, --no-privileges                 (grant/revoke)

  --binary-upgrade                      

  --column-inserts                   INSERT        

  --disable-dollar-quoting          (  )   ,    SQL     

  --disable-triggers                          

  --exclude-table-data=TABLE                

  --inserts                     INSERT  ,   COPY         

  --no-security-labels                   

  --no-tablespaces                       

  --no-unlogged-table-data                

  --quote-all-identifiers              ,       

  --section=SECTION                   (   ,   ,      )

  --serializable-deferrable              

  --use-set-session-authorization

                                  SESSION AUTHORIZATION     

                ALTER OWNER         

    :

  -h, --host=                           

  -p, --port=                     

  -U, --username=                   

  -w, --no-password                 

  -W, --password                  (  )

  --role=ROLENAME                SET ROLE

  :        
  :https://www.jianshu.com/p/6b064c2ccf91
  :  
          ,                      。

エクスポートsqlデータのインポート
 .         

1.     :   :pg_dump  -U  postgres  -f  c:\db.sql postgis

                              :pg_dump  -U postgres  postgis > c:\db.sql

2.     :   :psql  -d  postgis  -f  c:\db.sql  postgres

3.     :   :pg_dump -Upostgres -t mytable -f  dump.sql  postgres

4.     :   :psql  -d  postgis  -f  c:\ dump.sql postgres

  :

       postgres:  

       postgis:     

       mytable:   

        -f, --file=   :      

        -U, --username=  :           

 .        

  :
  pg_dump [  ]... [     ]

    :
  -f, --file=                
  -F, --format=c|t|p              (  ,tar,   )
  -v, --verbose               
  -Z, --compress=0-9                 
--lock-wait-timeout=TIMEOUT             
  --help                             ,    
  --versoin                         ,    

        :
  -a, --data-only              ,     
  -b, --blobs                      
  -c, --clean                    ,   (  )     
  -C, --create                    ,       
  -E, --encoding=ENCODING        ENCODING       
  -n, --schema=SCHEMA                
  -N,--exclude-schema=SCHEMA              
  -o, --oids                    OID
  -O, --no-owner                ,         

  -s, --schema-only            ,     
  -S, --superuser=NAME         ,         
  -t, --table=TABLE                
  -T, --exclude-table=TABLE               
  -x, --no-privileges             (grant/revoke)
  --binary-upgrade                 
  --inserts                 INSERT  ,   COPY         
  --column-inserts               INSERT        
  --disable-dollar-quoting          (  )  ,    SQL     
  --disable-triggers                       
  --no-tablespaces                    
  --role=ROLENAME              SETROLE
 --use-set-session-authorization
                             SESSION AUTHORIZATION     
                          ALTER OWNER         

    :
  -h, --host=                           
  -p, --port=                     
  -U, --username=                   
  -w, --no-password                

  -W, --password                 (  )