Re: Large Object permissions lost in transfer

Поиск
Список
Период
Сортировка
От Andy Colson
Тема Re: Large Object permissions lost in transfer
Дата
Msg-id 4D9A0310.40108@squeakycode.net
обсуждение исходный текст
Ответ на Large Object permissions lost in transfer  (Howard Cole <howardnews@selestial.com>)
Ответы Re: Large Object permissions lost in transfer  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Large Object permissions lost in transfer  (Howard Cole <howardnews@selestial.com>)
Список pgsql-general
On 4/4/2011 9:19 AM, Howard Cole wrote:
> On 04/04/2011 2:47 PM, Andy Colson wrote:
>>> permissions, - but how do I set up the permissions for the large
>>> objects?
>> I had the same problem. and there is no grant all... there is the new
>> DO though. That's what I used, a simple DO expression to iterate and
>> update the permissions.
>>
>> -Andy
>>
> Thanks Andy. As a temporary measure I am going to use the server
> configuration variable lo_compat_privileges when I work out how to use
> it. For the longer term, could I borrow your script for the DO :)
>

I dont seem to have it anymore... but here is a re-created, untested
version.

do $$
delcare r record;
begin
for r in select loid from pg_catalog.pg_largeobject loop
   execute 'ALTER LARGE OBJECT ' || r.loid || ' OWNER TO andy';
end loop;
end$$;


I wanted to change the owner.. where-as you want grant... but it should
get you the idea.

-Andy

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

Предыдущее
От: Marc-André Goderre
Дата:
Сообщение: Re: Trigger vs web service
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Large Object permissions lost in transfer