Re: read only user

Поиск
Список
Период
Сортировка
От Tomeh, Husam
Тема Re: read only user
Дата
Msg-id CB0FB369FF86E248A884BCC002562BCB19ACB0@pisgsna01sxch01.ana.firstamdata.com
обсуждение исходный текст
Ответ на read only user  (Colin Taylor <colin.taylor@gmail.com>)
Список pgsql-admin
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
**********************************************************************

В списке pgsql-admin по дате отправления:

Предыдущее
От: Stephen Byers
Дата:
Сообщение: Re: autovacuum on updated rows
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: autovacuum on updated rows