Re: Trying to create DB / user to import some data

Поиск
Список
Период
Сортировка
От John R Pierce
Тема Re: Trying to create DB / user to import some data
Дата
Msg-id 5245CB81.6030401@hogranch.com
обсуждение исходный текст
Ответ на Trying to create DB / user to import some data  (mdr <monosij.forums@gmail.com>)
Ответы Re: Trying to create DB / user to import some data  (Monosij <monosij.forums@gmail.com>)
Список pgsql-general
On 9/26/2013 10:28 PM, mdr wrote:
> create user import_dbms_user with password 'import_dbms';
> create database import_dbms_db;
> grant all privileges on database import_dbms_db to import_dbms_user;

that grant only controls connection and create schema privileges. if you
want this user to have full control of this database, you should instead
have made them the owner, like...

     alter database import_dbms_db owner import_dbms_user;

(or simply adding 'owner import_dbms_user' to the create database command)

re: pg_hba.conf, I don't micromanage access in there for most of my
systems, rather, I leave it set something like...

local all postgres peer
local all all md5
host all all 127.0.0.0/8 md5
host all all 10.x.y.0/20 md5     # thats my LAN subnet, I'm not
expecting any connections from outside



--
john r pierce                                      37N 122W
somewhere on the middle of the left coast



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

Предыдущее
От: mdr
Дата:
Сообщение: Re: Trying to create DB / user to import some data
Следующее
От: mdr
Дата:
Сообщение: Creating Primary Key after CREATE TABLE: Is Sequence created?