1, 導整個資料庫
如何匯出postgresql資料庫中的資料:
$ pg_dump -u postgres -d mydatabase -f dump.sql
匯入資料時首先建立資料庫再用psql匯入:
$ createdb newdatabase
$ psql -d newdatabase -u postgres -f dump.sql
2, 導具體表
例如: 我要一次性匯出table1, table2, table3, 可以這麼來寫:
pg_dump -t table1 -t table2 -t table3 -f c -z 9 databasename > abc.backup
linux 匯入匯出postgresql資料庫
匯出資料庫 1 定位到postgresql的安裝目錄bin下 我的目錄是 cd opt postgresql 9.2 bin 2 執行匯出命令 pg dump u username databasename root 111.sql 輸入資料庫密碼 這樣就把資料庫匯出到root下的111.sql檔案...
PostgreSQL匯出匯入
整理了一下postgresql匯入匯出相關schema的方法。一 匯出 匯出his庫里crm的schema表結構和資料 n引數 pg dump h 192.168.2.154 p 5432 d his n crm f test.sql 只匯出his庫里crm的schema表結構 s引數 pg dum...
PostgreSQL匯出匯入
整理了一下postgresql匯入匯出相關schema的方法。一 匯出 匯出his庫里crm的schema表結構和資料 n引數 pg dump h 192.168.2.154 p 5432 d his n crm f test.sql 只匯出his庫里crm的schema表結構 s引數 pg dum...