Re: Understanding database schemas

From: Bosco Rama <postgres(at)boscorama(dot)com>
To: Melvin Call <melvincall979(at)gmail(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Understanding database schemas
Date: 2013-08-02 18:36:56
Message-ID: 51FBFC48.5080009@boscorama.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 08/02/13 10:56, Melvin Call wrote:
>
> If I may pigtail another related question, what is the procedure for
> allowing another user access to that schema?

Heh. You almost have the words already:
grant usage on schema hrschema to hr_user;

This will allow them to see the objects in the schema. It does nothing
to allow them to access the objects themselves, so you'll still need to
grant the appropriate privileges on the objects within the schema. You
can use default privileges if you don't wish to grant them at creation
time. See the docs for default privs:

<http://www.postgresql.org/docs/9.2/static/sql-alterdefaultprivileges.html>

HTH,
Bosco.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Melvin Call 2013-08-02 18:52:13 Re: Understanding database schemas
Previous Message Jerry Sievers 2013-08-02 18:35:08 Re: TOC errors