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