Re: pg_restore but for full user and roles, etc - Mailing list pgsql-admin

From Keith Fiske
Subject Re: pg_restore but for full user and roles, etc
Date
Msg-id CAODZiv6GL6iasg91-uYzfh699NgGBOwTbWWQXeZG9=EwvGy3Gw@mail.gmail.com
Whole thread Raw
In response to pg_restore but for full user and roles, etc  (Wells Oliver <wells.oliver@gmail.com>)
List pgsql-admin


On Fri, Jul 26, 2024 at 12:43 PM Wells Oliver <wells.oliver@gmail.com> wrote:
I am doing a pg_restore of a database, which is nothing difficult, but I also am creating a new server first, and rather than painstakingly making sure I create all users and roles etc prior to pg_restore (so we can have the same perms), is there some obvious way of doing this I'm unawares of?

--

pg_restore is only used for custom/directory format dumps done by pg_dump. Roles are global objects, not per database. So you have to use "pg_dumpall -g" to grab the global objects. That creates a standard sql file that you then use "psql -f" to restore.

And to clarify, while the roles themselves are global, the GRANTS are per database and would be contained in the pg_dump files along with the objects those grants are for.
--
Keith Fiske
Senior Database Engineer
Crunchy Data - http://crunchydata.com

pgsql-admin by date:

Previous
From: Fernando Hevia
Date:
Subject: Re: Queries are failing on standby server
Next
From: Ron Johnson
Date:
Subject: Re: pg_restore but for full user and roles, etc