How to restore roles into new Database server?
Hello Pros,
Is there a quick way to create roles from database server to another db server?
Regards,
Sridhar Parepalli
This can be accomplished by taking a global dump. pg_dumpall utility has an
option "-g" to accomplish that.
Regards,
Ninad Shah
On Wed, 15 Sept 2021 at 19:24, Sridhar Parepalli <Sridhar.Parepalli@sas.com>
wrote:
Show quoted text
Hello Pros,
Is there a quick way to create roles from database server to another db
server?
Regards,
Sridhar Parepalli
On 9/15/21 6:53 AM, Sridhar Parepalli wrote:
Hello Pros,
Is there a quick way to create roles from database server to another db server?
pg_dumpall -g the_database -f globals.sql
psql -d other_database -f globals.sql
Though this will include other global objects e.g. tablespaces.
See:
https://www.postgresql.org/docs/current/app-pg-dumpall.html
Regards,
Sridhar Parepalli
--
Adrian Klaver
adrian.klaver@aklaver.com
Sridhar Parepalli schrieb am 15.09.2021 um 15:53:
Hello Pros,
Is there a quick way to create roles from database server to another db server?
You can use pg_dumpall with the --globals-only parameter to create a SQL script
that contains all roles from the source server
Thank you! Ninad
From: Ninad Shah <nshah.postgres@gmail.com>
Sent: Wednesday, September 15, 2021 10:11 AM
To: Sridhar Parepalli <Sridhar.Parepalli@sas.com>
Cc: pgsql-general@lists.postgresql.org
Subject: Re: How to restore roles into new Database server?
EXTERNAL
This can be accomplished by taking a global dump. pg_dumpall utility has an option "-g" to accomplish that.
Regards,
Ninad Shah
On Wed, 15 Sept 2021 at 19:24, Sridhar Parepalli <Sridhar.Parepalli@sas.com<mailto:Sridhar.Parepalli@sas.com>> wrote:
Hello Pros,
Is there a quick way to create roles from database server to another db server?
Regards,
Sridhar Parepalli
Thank you, Adrian!
-----Original Message-----
From: Adrian Klaver <adrian.klaver@aklaver.com>
Sent: Wednesday, September 15, 2021 10:13 AM
To: Sridhar Parepalli <Sridhar.Parepalli@sas.com>; pgsql-general@lists.postgresql.org
Subject: Re: How to restore roles into new Database server?
EXTERNAL
On 9/15/21 6:53 AM, Sridhar Parepalli wrote:
Hello Pros,
Is there a quick way to create roles from database server to another db server?
pg_dumpall -g the_database -f globals.sql
psql -d other_database -f globals.sql
Though this will include other global objects e.g. tablespaces.
See:
Regards,
Sridhar Parepalli
--
Adrian Klaver
adrian.klaver@aklaver.com
Thank you, Thomas!
-----Original Message-----
From: Thomas Kellerer <shammat@gmx.net>
Sent: Wednesday, September 15, 2021 10:55 AM
To: pgsql-general@lists.postgresql.org
Subject: Re: How to restore roles into new Database server?
EXTERNAL
Sridhar Parepalli schrieb am 15.09.2021 um 15:53:
Hello Pros,
Is there a quick way to create roles from database server to another db server?
You can use pg_dumpall with the --globals-only parameter to create a SQL script that contains all roles from the source server