Database Permissions

Поиск
Список
Период
Сортировка
От Blake Crosby
Тема Database Permissions
Дата
Msg-id 75BD0F68-7038-11D7-854A-000A2791C8A8@blakecrosby.com
обсуждение исходный текст
Ответы Re: Database Permissions  (Bruno Wolff III <bruno@wolff.to>)
Список 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


В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Clarification on RH Upgrade, pgsql not working - erroneous pg_hba.conf
Следующее
От: Bruno Wolff III
Дата:
Сообщение: Re: Database Permissions