Re: copy databases from two differend backups to one cluster

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: copy databases from two differend backups to one cluster
Date: 2022-11-18 15:31:33
Message-ID: e823042a-0c55-5c32-32e6-6ef1786e2fde@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/18/22 06:33, Joseph Kennedy wrote:
>
> I would like to copy databases from two different pg_basebackup backups to
> one lab environment database cluster on another server. Is it possible ?
>
> It's a good idea to do it in that way.
>
> Databases has your oid in pg_basebackup we can find it id in base
> directory for example:
>
>  base/
>
> 1
>
> 125859
>
> 14042
>
> 14043
>
> 2315410
>
> 2321461
>
> 2321462
>
> 2321463
>
> Database OID (and directory name) we can find by :
>
> SELECT oid from pg_database where datname = 'database name';
>
>  Steps:
>
> create empty databases on destination server (database oid they will be
> probably different then on source databases)
>
> stop Postgresql
>
> cleanup destination directories eg. 2315410, 2321461, 2321462, 2321463
>
> copy eg. content from pg_bassebackup01 base/(some OID) to 2315410 and 2321461
>
> copy eg. content from pg_bassebackup02 base/(some OID) to 2321462 and 2321463
>
> start postgresql
>
>
> Is it a good or  very bad idea ?
>

Why can't you do pg_dump/pg_restore?

--
Angular momentum makes the world go 'round.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Laurenz Albe 2022-11-18 15:51:45 Re: Calculating average block write time
Previous Message Tom Lane 2022-11-18 14:31:47 Re: RES: session_user different from current_user after normal login