On Mon, May 12, 2003 at 21:11:47 +0000,
Travis Whitton <whitton(at)atlantic(dot)net> wrote:
>
> dummy=# GRANT ALL ON DATABASE dummy TO devel;
> GRANT
Granting all on a database allows the grantee to create schemas and
temporary tables in that database. It doesn't grant access to any
tables in that database. To do that you want to write a script that
does a query to get a list of table names and then issue grant
statments for those tables.