Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Single command for Postgresql backup and restore

If u want to parallel dump and restore from one cluster to other u can use below statement.

pg_dump -U postgres -h source_host source-db | psql -U postgres -h Target-host Target-db

Comments

Popular posts from this blog

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

7 Steps to configure BDR replication in postgresql

Postgres Streaming Replication Configuration

vacuumlo - removing large objects orphans from a database PostgreSQL