Re: Grant select for all tables of the 12 schemas of my one db ? - Mailing list pgsql-general

From hubert depesz lubaczewski
Subject Re: Grant select for all tables of the 12 schemas of my one db ?
Date
Msg-id 20211013110015.GA11950@depesz.com
Whole thread Raw
In response to Re: Grant select for all tables of the 12 schemas of my one db ?  (Vijaykumar Jain <vijaykumarjain.github@gmail.com>)
Responses Re: Grant select for all tables of the 12 schemas of my one db ?
List pgsql-general
On Wed, Oct 13, 2021 at 03:33:20PM +0530, Vijaykumar Jain wrote:
> something like this ?

Like, but not exactly.

Consider what will happen if you have schema named "whatever something
else" - with spaces in it. Or "badlyNamedSchema".

Generally you'd want to use:

execute format('GRANT USAGE ON SCHEMA %I TO readonlyuser_role', sch);

and it will take care of it.

> also,
> in case you like, I have kind of liked this
> you can try running meta commands using psql -E to get the query that you
> would like to run for DO block.

while in psql, you can simply:
select format() ... from ...;
make sure that it returns list of correct sql queries, with no mistakes,
and with ; at the end of each command, and then rerun it like:
select format() ... from ... \gexec

depesz




pgsql-general by date:

Previous
From: Vijaykumar Jain
Date:
Subject: Re: Grant select for all tables of the 12 schemas of my one db ?
Next
From: Vijaykumar Jain
Date:
Subject: Re: Grant select for all tables of the 12 schemas of my one db ?