Where to get column length

Поиск
Список
Период
Сортировка
От Chris Hoover
Тема Where to get column length
Дата
Msg-id 1d219a6f0605050801n43054504j112a62f10c8fcc59@mail.gmail.com
обсуждение исходный текст
Ответы Re: Where to get column length
Список pgsql-admin
I know it is in the docs, but right now I can't see it.

How do I pull the length of a specific varchar column?  I have just found a problem with our schema being out of sync on one specific column, and need to find out how many of our 200+ databases need to be fixed.

Here is what I have so far:
select *
from pg_class, pg_attribute
where pg_class.relkind = 'r' and
pg_attribute.attrelid = pg_class.oid and
pg_class.relname = 'mytable' and
pg_attribute.attname = 'problem_column' and
???? != 256;  -- need to report anytime this column is not a varchar(256).

Thanks,

Chris

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

Предыдущее
От: Arnau
Дата:
Сообщение: Best way to upgrade Postgresql 7.4.x to 8.1.x?
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: Where to get column length