| From: | Chris Angelico <rosuav(at)gmail(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: how do I grant select to one user for all tables in a DB? |
| Date: | 2012-12-05 04:41:28 |
| Message-ID: | CAPTjJmr+qtPysNfN6rLddGSxEb6faiV-Vfp1Rz9ZEbdVCiPkng@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On Wed, Dec 5, 2012 at 2:12 PM, Gauthier, Dave <dave(dot)gauthier(at)intel(dot)com> wrote:
> V9.1.5 on linux
> User "select" created (yup, that's right, they want the user name to be
> "select". Guess what ptivs it is to have! Don't kill the messanger :-) )
>
> postgres=# grant select on all tables in schema sde to "select";
>
> ERROR: schema "sde" does not exist
>
> postgres=# \l
>
> List of databases
Your immediate problem is that sde is a database, not a schema.
They're different things, despite MySQL conflating the terms.
What you're trying to do is a perfectly reasonable way to create a
backup user. And it's definitely possible; check out ALTER DEFAULT
PRIVILEGES:
http://www.postgresql.org/docs/9.1/static/sql-alterdefaultprivileges.html
I think that's what you need there!
ChrisA
| From | Date | Subject | |
|---|---|---|---|
| Next Message | daniel | 2012-12-05 04:42:26 | Re: ts_headline and query with hyphen |
| Previous Message | tim_wilson | 2012-12-05 04:17:37 | Re: Statistics mismatch between n_live_tup and actual row count |