catalog of postgres

Поиск
Список
Период
Сортировка
От Mario Soto Cordones
Тема catalog of postgres
Дата
Msg-id e9b17cde050427110228170cf3@mail.gmail.com
обсуждение исходный текст
Ответы Re: catalog of postgres  (Alvaro Herrera <alvherre@dcc.uchile.cl>)
Список pgsql-admin
Hi guys

i have a following query:

SELECT nspname as schema, relname as objeto
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
  order by nspname, relname asc


with this query I obtain the schema name and the objects of this it , but
 like I can know that they are, that is to say if they are tables,
views, functions, sequences, etc ????????

thank  for all

--
cordialmente,

Ing. Mario Soto Cordones

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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Client Authentication problem
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: catalog of postgres