Granting rights on all tables, sequences and views - Mailing list pgsql-novice

From Raphael Bauduin
Subject Granting rights on all tables, sequences and views
Date
Msg-id 20020130101608.GE14044@raphael
Whole thread Raw
List pgsql-novice
Is this really the only way?
for f in `echo "\\z" | psql -u <suser> <database> | cut -d \| -f 2`; do echo "GRANT ALL ON $f TO <new-user>;" | psql -u
<suser><database>; done 
(found on http://www.postgresql.org/idocs/index.php?privileges.html)


The problem is that the \zz doesn't seem to be useful for me...
mydb=> \zz
Access permissions for database "mydb"
 Relation | Access permissions
 ----------+--------------------
 (0 rows)



pgsql-novice by date:

Previous
From: Torbjörn Andersson
Date:
Subject: 16k query limit
Next
From: Raphael Bauduin
Date:
Subject: owner of a table