- Mailing list pgsql-sql

From pgsql-sql
Subject
Date
Msg-id fc.000f567200a439d9000f567200a439d9.a43a08@fc.emc.com.ph
Whole thread Raw
List pgsql-sql
you can also do it by a shell script

grantall.sh:
###### start of grantall.sh #######
#!/bin/ash
SQL="SELECT relname FROM pg_class WHERE (relkind = 'r' OR relkind = 'S')
AND relname !~ '^pg_' ORDER BY relname"
OBJ=`psql -t -c "${SQL}" $1`
# OBJ=`echo ${OBJ} | sed 's/EOF//g'`
OBJ=`echo ${OBJ} | sed 's/ /, /g'`
# SQL="REVOKE ALL ON ${OBJ} FROM PUBLIC"
SQL="GRANT ALL ON ${OBJ} TO PUBLIC"
echo ${SQL}
psql -c "${SQL}" $1
###### end of grantall.sh #######

syntax: grantall.sh name_of_database

sherwin

roland@astrofoto.org writes:
>>>>>> "bk" == Boulat Khakimov <boulat@inet-interactif.com> writes:
>
>    bk> How do I grant permissions on everything in the selected
>    bk> databes?
>
>    bk> GRANT doesnt take as on object database name nor does it
>    bk> accept wild chars....
>
>Attached is some Perl code I wrote long ago to do this.  This
>particular code was done for Keystone, a problem tracking database and
>it would do a "GRANT ALL".  Modify it as needed.  Last I checked it
>worked with both PostgreSQL 6.5.x and 7.0.x
>
>
>roland
>--
>


pgsql-sql by date:

Previous
From: darcy@druid.net (D'Arcy J.M. Cain)
Date:
Subject: Re: copy a record from one table to another (archive)
Next
From: "pgsql-sql"
Date:
Subject: Re(2): Permissons on database