Re: pgsql user creation query: - Mailing list pgsql-docs

From Rod Taylor
Subject Re: pgsql user creation query:
Date
Msg-id 1031584910.268.36.camel@jester
Whole thread Raw
In response to pgsql user creation query:  ("news" <da@da.com>)
List pgsql-docs
In 7.2 you must create the database as the user.
CREATE USER <user> CREATEDB;
\c - <user>
CREATE DATABASE <db>;
ALTER USER <user> NOCREATEDB;

In 7.3 you can:
CREATE DATABASE <db> WITH OWNER = <user>;

On Thu, 2002-09-05 at 16:34, news wrote:
> Hi all,
>
> I'm just starting out with pgsql, moving away from mysql as I'm missing
> having a procedural language. Anyway, I apologise if this is an easily
> resolved problem, I have looked through the docs for any answers but they
> don't seem to be coming easily.
>
> I'm wondering if it's possible to create a user and assign that user as an
> owner of a database, so that user can do pretty much anything they wish to
> that database and any existing and to-be-created objects within it?
>
> I hope this makes sense
> Thank you all for your time,
> Michael.
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>
--
  Rod Taylor


pgsql-docs by date:

Previous
From: "news"
Date:
Subject: pgsql user creation query:
Next
From: Peter Eisentraut
Date:
Subject: Re: RESTRICT / CASCADE