Owner and privileges on sequences

Поиск
Список
Период
Сортировка
От Dmitry Samokhin
Тема Owner and privileges on sequences
Дата
Msg-id hampvl$kol$1@news.hub.org
обсуждение исходный текст
Ответы Re: Owner and privileges on sequences
Список pgadmin-support
For sequences, the DDL script generated looks like:

CREATE SEQUENCE ...;
ALTER TABLE ... OWNER TO ...;
GRANT ... ON TABLE ... TO ...;
...

... but should be:

...
ALTER SEQUENCE ... OWNER TO ...;
GRANT ... ON SEQUENCE ... TO ...;
...

Regards,
Dmitry. 




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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: Foreign key to column on same table at table creation time
Следующее
От: Twendilonge Valery VLT
Дата:
Сообщение: whatvshould be the next step