Database Permissions

From: Blake Crosby <me(at)blakecrosby(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Database Permissions
Date: 2003-04-16 18:23:02
Message-ID: 75BD0F68-7038-11D7-854A-000A2791C8A8@blakecrosby.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hello,

Currently users who dont own a specific database can still create
tables in that database:

bcrosby=> \c fox
You are now connected to database fox.
fox=> create table testing (id serial);
NOTICE: CREATE TABLE will create implicit sequence 'testing_id_seq'
for SERIAL column 'testing.id'
NOTICE: CREATE TABLE / UNIQUE will create implicit index
'testing_id_key' for table 'testing'
CREATE

Is there any way around this? I am using postgresql version 7.2. My
pg_hba.conf contains:

local all password
host all 127.0.0.1 255.255.255.255 password

Blake

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Bruno Wolff III 2003-04-16 18:34:59 Re: Database Permissions
Previous Message Adam Kessel 2003-04-16 15:56:14 Log Output Going to STDERR even with silent mode on