Re: created databases as other users...

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: created databases as other users...
Дата
Msg-id 22464.1097528464@sss.pgh.pa.us
обсуждение исходный текст
Ответ на created databases as other users...  (Jonathan Villa <jvilla@innovativesource.net>)
Ответы Re: created databases as other users...  (Jonathan Villa <jvilla@innovativesource.net>)
Список pgsql-general
Jonathan Villa <jvilla@innovativesource.net> writes:
> $ createdb --owner=testcon testdb
> but the owner ends up being postgres

I don't think so.

$ createuser testcon
Shall the new user be allowed to create databases? (y/n) n
Shall the new user be allowed to create more new users? (y/n) n
CREATE USER
$ createdb --owner=testcon testdb
CREATE DATABASE
$ psql -l
        List of databases
    Name    |  Owner  | Encoding
------------+---------+-----------
 pltest     | tgl     | SQL_ASCII
 regression | tgl     | SQL_ASCII
 template0  | tgl     | SQL_ASCII
 template1  | tgl     | SQL_ASCII
 testdb     | testcon | SQL_ASCII
(5 rows)

$

            regards, tom lane

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

Предыдущее
От: Jonathan Villa
Дата:
Сообщение: created databases as other users...
Следующее
От: Jonathan Villa
Дата:
Сообщение: Re: created databases as other users...