Re: alter table schema, default sequences stay the same

Поиск
Список
Период
Сортировка
Искать
От
Sim Zacks
Тема
Re: alter table schema, default sequences stay the same
Дата
Msg-id
4C2AD724.9080901@compulab.co.il
Ответ на
Список
Дерево обсуждения
alter table schema, default sequences stay the same Sim Zacks <sim@compulab.co.il>
Re: alter table schema, default sequences stay the same Tom Lane <tgl@sss.pgh.pa.us>
Re: alter table schema, default sequences stay the same Sim Zacks <sim@compulab.co.il>
Re: alter table schema, default sequences stay the same Tom Lane <tgl@sss.pgh.pa.us>
Re: alter table schema, default sequences stay the same "A. Kretschmer" <andreas.kretschmer@schollglas.com>
Re: alter table schema, default sequences stay the same Scott Marlowe <scott.marlowe@gmail.com>
Re: alter table schema, default sequences stay the same "A. Kretschmer" <andreas.kretschmer@schollglas.com>
Re: alter table schema, default sequences stay the same Sim Zacks <sim@compulab.co.il>
Re: alter table schema, default sequences stay the same Sim Zacks <sim@compulab.co.il>

> I haven't consumed enough caffeine today to recall the details, but
> I think you could have ended up with default expressions like the above
> if the database had been dumped and reloaded from 8.0 or earlier.
> nextval(regclass) was introduced in 8.1 precisely to solve this type
> of problem.
>
>   
>> Is there an easy way to modify all the default values now?
>>     
> Not especially :-(.  You're going to need to run around and change them
> all to the right name.  Be sure to lose the ::text bit while at it,
> so it works right the next time.
>
> 			regards, tom lane
>   
This is the query I used to generate the alter stmt for all the defaults
that used public sequences in the new schema

select 'alter table ' || relname || ' alter column ' || attname || ' set
default ' ||
replace(replace(replace(b.adsrc,'public.',''),'::text',''),'::regclass','')
|| ';'
from pg_attribute a
join pg_attrdef b on a.attrelid=b.adrelid and attnum=adnum
join pg_class c on c.oid=a.attrelid
where adsrc like '%nextval((''public.%'
and relnamespace=558726861
order by adsrc

My first database was an 8.0 and at some point we upgraded to 8.2 so
that must have caused the ?corruption?
В списке pgsql-general по дате отправления
От: Vick Khera
Дата:
От: Dagan McGregor
Дата:
FAQ