Обсуждение: schema postgresql

Поиск
Список
Период
Сортировка

schema postgresql

От
Henry Francisco Garcia Cortez
Дата:
how to restrict a user from seeing a schema in postgresql

--
Ing. Henry G. Cortez



Re: schema postgresql

От
Paul Förster
Дата:
Hi Henry,

> On 11. Sep, 2020, at 23:13, Henry Francisco Garcia Cortez <garcortez@gmail.com> wrote:
>
> how to restrict a user from seeing a schema in postgresql

for example:

revoke all privileges on <schema> from <user>;

See:
https://www.postgresql.org/docs/current/sql-revoke.html

Cheers,
Paul