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
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
**********************************************************************