Re: [GENERAL] newbie problem on creating table

From: "Thomas Krebs" <thomas(at)krebs-haertl(dot)de>
To: <pgsql-novice(at)postgresql(dot)org>, <pqsql-general(at)postgresql(dot)org>
Subject: Re: [GENERAL] newbie problem on creating table
Date: 2000-07-10 12:51:41
Message-ID: 002701bfea6d$c0ec26e0$b240363e@sokrates
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice

> >
> > I am trying to get a start with Postgres 6.4 on Suse Linux 6.4. I
created a
> > superuser who is allowed to create databases. I created a user and a
> > database, but I didn't manage so far to create a table. It just returns
> > "Error cannot create <tablename>.
>
> The owner of your database might the postgres superuser. You will have
> to set the permissions or the owner accordingly. The latter can be
> done in 7.0.x as superuser with:
>
> UPDATE pg_database
> SET datdba=<uid of new user>
> WHERE datname=<name of db in question>
> ;
I checked pg_database: The datadba for the database is root and I am
accessing the database as root.
any other ideas?
>
> HTH
> Holger Klawitter
> --
> Holger Klawitter +49 (0)251 484 0637
> holger(at)klawitter(dot)de http://www.klawitter.de/
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Benjamin Adida 2000-07-10 12:56:04 Re: Re: [GENERAL] PostgreSQL vs. MySQL
Previous Message The Hermit Hacker 2000-07-10 12:38:44 RE: PostgreSQL & the BSD License

Browse pgsql-novice by date

  From Date Subject
Next Message Thomas Krebs 2000-07-10 12:59:54 [NOVICE] newbie problem on creating table
Previous Message Thomas Krebs 2000-07-10 12:49:57 Re: newbie problem on creating table