Re: catalog of postgres

Поиск
Список
Период
Сортировка
От Mario Soto Cordones
Тема Re: catalog of postgres
Дата
Msg-id e9b17cde0504271257313a0ff0@mail.gmail.com
обсуждение исходный текст
Ответ на Re: catalog of postgres  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: catalog of postgres
Список pgsql-admin
OK  i have a big mistake, i saw bad, now my new query is

SELECT nspname as esquema, relname as objeto,
(CASE relkind
  WHEN 'v' THEN 'Vista'
  WHEN 'i' THEN 'Indice'
  WHEN 'S' THEN 'Secuencia'
  WHEN 'r' THEN 'Tabla'
  WHEN 'c' THEN 'Tipo'
  END) as tipo
FROM
  pg_class bc,
  pg_attribute ta,
  pg_namespace ns,
  pg_type ty
WHERE
  ta.attrelid = bc.oid
  and ta.attnum > 0
  and not ta.attisdropped
  and nspname <> 'information_schema' and nspname not like 'pg_%'
  ----and relam = 0
  and bc.relnamespace = ns.oid
  and bc.relname not like 'pg_%'
  and ta.atttypid = ty.oid
  group by nspname, relname, relkind
  order by tipo desc

  select * from pg_class
  where relkind = 'i'

but not you where they stay the functions

thank you for all



2005/4/27, Tom Lane <tgl@sss.pgh.pa.us>:
> Mario Soto Cordones <msotocl@gmail.com> writes:
> > OK but views and tables for example have the same one relkind
>
> Not for many years now (certainly not in any release that has pg_namespace).
>
>                         regards, tom lane
>


--
cordialmente,

Ing. Mario Soto Cordones

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

Предыдущее
От: "Magnus Hagander"
Дата:
Сообщение: Re: PostgreSQL 8.0.x on Windows XPe
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: catalog of postgres