feature request: pg_restore renaming target schema - Mailing list pgsql-admin

From CN
Subject feature request: pg_restore renaming target schema
Date
Msg-id 1450338245.2626908.469822713.6C14EE8F@webmail.messagingengine.com
Whole thread Raw
Responses Re: feature request: pg_restore renaming target schema
List pgsql-admin
Hi!

I need to restore one source schema to multiple target schema currently.
For example,

source database: db1
source schema: s1
target database: db2

The existing approach I know is following these steps:

(1) pg_dump -n s1 -Fc -f source.db db1
(2a) pg_restore -d db2 -n s1 source.db
(2b) psql -c "ALTER SCHEMA s1 RENAME TO t1" db2
(3a) pg_restore -d db2 -n s1 source.db
(3b) psql -c "ALTER SCHEMA s1 RENAME TO t2" db2

So far so good.
However, with existing tool I know, obviously step groups (2) and (3)
can only run sequentially.

If pg_restore allows "redirecting" source schema to target schema, then
I can concurrently issue some imaginary commands like these:

pg_restore -d db2 -n s1 --target-schema=t1 source.db
pg_restore -d db2 -n s1 --target-schema=t2 source.db
pg_restore -d db2 -n s1 --target-schema=t3 source.db

Best Regards,
CN

--
http://www.fastmail.com - Faster than the air-speed velocity of an
                          unladen european swallow



pgsql-admin by date:

Previous
From: Kevin Grittner
Date:
Subject: Re: semop hanging - Postgres 9.4.4
Next
From: Shreeyansh Dba
Date:
Subject: Re: feature request: pg_restore renaming target schema