Postgresql 7.4.1 - Template database and user permission

From: "Froggy / Froggy Corp(dot)" <froggy(at)froggycorp(dot)com>
To: "pgsql-general(at)postgresql(dot)org General" <pgsql-general(at)postgresql(dot)org>
Subject: Postgresql 7.4.1 - Template database and user permission
Date: 2004-04-19 16:52:26
Message-ID: 408403CA.5DF2A5F8@froggycorp.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

I'am using postgresql to make different web site with differente
database for each, but with same table/link/...
So, i change from 7.2 to 7.4 and try to use template function to create
each new DB more easier (with user posgres):

CREATE DATABASE myowntemplate TEMPLATE = template1;

After that, i create the differentes tables.

I create my user and create the db for each user :

CREATE DATABASE user_db OWNER = user TEMPLATE = myowntemplate;

Update data, and try it.

But i got a msg in the postgresql.log that my user have not the
permission to access the tables :

ERROR: permission denied for relation table1
ERROR: permission denied for relation table2
[...]

So maybe i made a mistake, by i thought by making "user" the owner of
"user_db", he will gain each priviliges on "myowndb".

Thanx for answers,
regards,

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Clay Luther 2004-04-19 16:55:10 Running Multiple Postmasters
Previous Message Josh Berkus 2004-04-19 16:51:16 Re: [HACKERS] Remove MySQL Tools from Source?