Discussion:
[ADMIN] grant select pg 9.0.3
(too old to reply)
Tony Capobianco
2012-05-02 19:01:07 UTC
Permalink
I've issued the following statement:

grant select on all tables in schema support to backup;

When I perform a pgdump of the support schema with the backup user it
works fine. If I create a new table within the support schema, pgdump
fails on the support schema. To rectify, I issue the grant statement
again. How can I avoid having to issue the grant each time I create a
new table?

Thanks.
Tony
--
Sent via pgsql-admin mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin
Kevin Grittner
2012-05-02 19:07:23 UTC
Permalink
Post by Tony Capobianco
grant select on all tables in schema support to backup;
How can I avoid having to issue the grant each time I create a new
table?

http://www.postgresql.org/docs/9.0/interactive/sql-alterdefaultprivileges.html

Also, please consider updating to 9.0.7.

http://www.postgresql.org/support/versioning/

-Kevin
--
Sent via pgsql-admin mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin
Loading...