- Bạn có thể sử dụng công cụ pg_dump (xem tài liệu pg_dump ) và pg_restore ( pg_restore doc )
- Bạn không cần tạo tên cơ sở dữ liệu mới "A" trên máy chủ mới.
* Ví dụ cơ bản:
Tôi tạo các tệp "dump.bat" & "restore.bat" trong cửa sổ để kết xuất / khôi phục
1 / Sao lưu:
"C:\Program Files\PostgreSQL\9.1\bin\pg_dump.exe" --host localhost --port 5432 --username "postgres" --role "postgres" --format plain --encoding UTF8 --schema-only --file "dump_resul.sql" --schema "name_schema_B" "name_database_A"
Các kết quả:
-- PostgreSQL database dump
-- Dumped from database version 9.1.4
-- Dumped by pg_dump version 9.1.4
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
CREATE TABLE abtb_temp (
id bigint NOT NULL,
app_code character varying(100)
); ....
* Lưu ý: một số tùy chọn quan trọng:
--data-only, --format=format (ex: format=tar -> if you have a big database), --schema-only, --table=table (ex: --table=schema_name.table_name) ...
2 / Khôi phục:
"C:\Program Files\PostgreSQL\9.1\bin\pg_restore.exe" --host localhost --port 5432 --username "postgres" --dbname "any_database" --no-password --no-owner --no-privileges --schema name_schema_B --verbose "C:\dump_resul.sql"
(**)
(**) Trong thực tế, nếu tệp định dạng của bạn là * .sql, bạn có thể sử dụng pgAdmin (hoặc psql) để khôi phục. Bạn nên sử dụng pg_restore để khôi phục tệp .tar ( .bakup ...)
-b
tùy chọn để đổ với các đốm màu. Lưu ý rằng với-b
tất cả các đốm màu được thêm vào không chỉ cho một lược đồ.