Обсуждение: read only user

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

read only user

От
Colin Taylor
Дата:
Hi there,  Ive google and searched the lists but havent found detailed instructions on how to give a user readly access to a schema. Is there a way to do this with out explictly granting the SELECT privilege on every table?

Thanks and regards,
Colin.

Re: read only user

От
Walter Kaan
Дата:
Hi Colin,

If its a one-off I usually do this in pgadmin3 by right clicking on the
schema and doing the grant wizard from there.

Regards

Walter

On Mon, 2005-11-07 at 10:54 +1300, Colin Taylor wrote:
> Hi there,  Ive google and searched the lists but havent found detailed
> instructions on how to give a user readly access to a schema. Is there
> a way to do this with out explictly granting the SELECT privilege on
> every table?
>
> Thanks and regards,
> Colin.
--
Walter Kaan
IM/IT Manager
NSW Rural Doctors Network
www.nswrdn.com.au


Re: read only user

От
"Tomeh, Husam"
Дата:
As a workaround, you can run this in psql :
 
         select 'grant select on ' || tablename || ' to ' || 'smith ;'  from pg_tables where schemaname='public';
 
The above SQL will generate the DDL for all the tables in the schema "public" for instance.
 
You may want to direct your output which may be something like :
 
         grant select on table1 to smith ;
         grant select on table2 to smith ;
         grant select on foo to smith ;
 
to a file and then run the file in psql to execute the grant statements.

--
 Husam
 


From: pgsql-admin-owner@postgresql.org [mailto:pgsql-admin-owner@postgresql.org] On Behalf Of Colin Taylor
Sent: Sunday, November 06, 2005 1:54 PM
To: pgsql-admin@postgresql.org
Subject: [ADMIN] read only user

Hi there,  Ive google and searched the lists but havent found detailed instructions on how to give a user readly access to a schema. Is there a way to do this with out explictly granting the SELECT privilege on every table?

Thanks and regards,
Colin.

**********************************************************************

This message contains confidential information intended only for the use of the addressee(s)

named above and may contain information that is legally privileged.  If you are not the

addressee, or the person responsible for delivering it to the addressee, you are hereby
notified that reading, disseminating, distributing or copying this message is strictly prohibited. 

If you have received this message by mistake, please immediately notify us by replying to the

message and delete the original message immediately thereafter.

 

Thank you.                                                                                                       FADLD Tag
**********************************************************************