- Pg_dump aracını (bkz. Pg_dump doc ) ve pg_restore ( pg_restore doc ) kullanabilirsiniz
- Yeni sunucuda "A" yeni veritabanı adı oluşturmanıza gerek yoktur.
* Temel örnek:
Dump / restore penceresinde "dump.bat" ve "restore.bat" dosyalarını oluşturuyorum
1 / Yedekleme:
"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"
Sonuçlar:
-- 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)
); ....
* Not: Bazı önemli seçenekler:
--data-only, --format=format (ex: format=tar -> if you have a big database), --schema-only, --table=table (ex: --table=schema_name.table_name) ...
2 / Geri Yükle:
"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"
(**)
(**) Gerçekte, biçim dosyanız * .sql ise, geri yüklemek için pgAdmin (veya psql) kullanabilirsiniz. Bir dosyayı geri yüklemek için pg_restore kullanmalısınız .tar ( .bakup ...)
-b
BLOB'larla çıkmak için seçeneği kullanın . İle Not-b
tüm lekeler tek şema için sadece eklenir.