Re: Rights for view. - Mailing list pgsql-general

From Viacheslav N Tararin
Subject Re: Rights for view.
Date
Msg-id 3E492492.9060208@dekasoft.com.ua
Whole thread Raw
In response to Rights for view.  (Viacheslav N Tararin <taras@dekasoft.com.ua>)
List pgsql-general
Thanks.
(heaped up, though)

Tom Lane пишет:

>>create user user2 password 'u2';
>>create schema user2;
>>create table user2.table1(t1 integer);
>>create view user2.view1 as select * from user2.table1;
>>grant select on user2.view1 to user2;
>>\c - user2;
>>select * from user2.view1;
>>select * from user2.table1;
>>
>>
>
>
>
>>---- My output -----
>>CREATE USER
>>CREATE SCHEMA
>>CREATE TABLE
>>CREATE VIEW
>>GRANT
>>You are now connected as new user user2.
>>psql:test.sql:7: ERROR:  user2: permission denied
>>psql:test.sql:8: ERROR:  user2: permission denied
>>
>>
>
>It's complaining about the user2 schema, which is owned by user1
>(or whoever did that CREATE SCHEMA) and has no permissions for
>user2 to access it.  You need at least
>
>grant usage on schema user2 to user2;
>
>Alternatively you might have wanted to make the user2 schema be
>owned by user2 in the first place.
>
>            regards, tom lane
>
>
>
>




pgsql-general by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: Rights for view.
Next
From: "Cristian Custodio"
Date:
Subject: Fw: Priority against catalog