Re: Allow GRANT/REVOKE permissions to be applied to all schema

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: Allow GRANT/REVOKE permissions to be applied to all schema
Дата
Msg-id 200502011730.54459.peter_e@gmx.net
обсуждение исходный текст
Ответ на Re: Allow GRANT/REVOKE permissions to be applied to all schema  (Josh Berkus <josh@agliodbs.com>)
Список 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 по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Allow GRANT/REVOKE permissions to be applied to all
Следующее
От: Tom Lane
Дата:
Сообщение: Re: STABLE functions