postgresql 資料庫匯入匯出
1. pg_dump -h localhost -U postgres ycxm_layers >c:/data/dum.sql
使用者名稱:postgres
資料庫:ycxm_layers
檔案:c:/data/dum.sql
能成功匯出。
2. 匯入資料庫
psql -U postgres RRRRR < C:\data\dum.sql
使用者名稱:postgres
資料庫:RRRRR (需要新建)
檔案:c:/data/dum.sql
能成功匯入。
文章:https://www.cnblogs.com/hltswd/p/6165918.html