Re: Can multiple users own and maintain a database?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Peter M(dot) Van Buren" <petervanburen(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Can multiple users own and maintain a database?
Date: 2009-03-10 20:03:58
Message-ID: 2833.1236715438@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

"Peter M. Van Buren" <petervanburen(at)gmail(dot)com> writes:
> I have a group of users who are running a maintenance-intensive database.
> This database needs to be vacuumed and dumped as often as every couple of
> hours. The database owner has asked me to make multiple users all be
> co-owners of the database. He wants all of these users to be able to vacuum
> and dump the database when needed. The database owner does not want to have
> a db_owner account or a db_owner role - he'd like all of the users to be
> able to sign in as themselves and perform maintenance.

As far as vacuuming goes, in recent releases it should work to make all
the users members of a group role that owns the DB. Dump I'm not so
sure about --- do you really want them all to be able to read each
others' tables? If so, try giving the group role at least read
permission on each table, too.

Perhaps more to the point, why are you doing these things manually at all?
Surely dumps should be automated through a cron script or some such.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Jessica Richard 2009-03-10 23:24:57 how to figure out how long a query takes in the pg log file...
Previous Message Peter M. Van Buren 2009-03-10 19:50:55 Can multiple users own and maintain a database?