Re: Allow GRANT/REVOKE permissions to be applied to all schema - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: Allow GRANT/REVOKE permissions to be applied to all schema
Date
Msg-id 200502011730.54459.peter_e@gmx.net
Whole thread Raw
In response to Re: Allow GRANT/REVOKE permissions to be applied to all schema  (Josh Berkus <josh@agliodbs.com>)
List pgsql-hackers
Josh Berkus wrote:
> > pg_find --type=table --schema=foo --name='system_*'
> > --execute='GRANT ALL ON % TO myuser'
>
> Hey, that's a way keen idea.   Regardless of what we do with
> GRANT/REVOKE. You don't happen to, uh, have any code for that?

psql -t -A -c "select tablename from pg_tables where schemaname = 'foo' 
and tablename like 'system_%';" | xargs -i -n 1 psql -c 'grant all on 
{} to myuser;'

-- 
Peter Eisentraut
http://developer.postgresql.org/~petere/


pgsql-hackers by date:

Previous
From: Richard Huxton
Date:
Subject: Re: Allow GRANT/REVOKE permissions to be applied to all
Next
From: Tom Lane
Date:
Subject: Re: STABLE functions