Re: How to get stored procedure args list from metadata tables ?

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: How to get stored procedure args list from metadata tables ?
Дата
Msg-id A737B7A37273E048B164557ADEF4A58B057B2CE9@ntex2010a.host.magwien.gv.at
обсуждение исходный текст
Ответ на How to get stored procedure args list from metadata tables ?  ("Gauthier, Dave" <dave.gauthier@intel.com>)
Ответы Re: How to get stored procedure args list from metadata tables ?  ("Gauthier, Dave" <dave.gauthier@intel.com>)
Список pgsql-general
Dave Gauthier wrote:
> Looking for a table or view which contains the list of arguments that are=
 passed to a stored
> procedure.  Doesn't seem to be in pg_proc.prosrc or other pg_proc columns=
.

This information is in the following columns of pg_proc:
proargtypes, proallargtypes, proargmodes, proargnames

For a nice display, use
SELECT pg_get_function_identity_arguments('funcname'::regproc);

Yours,
Laurenz Albe

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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: How to get stored procedure args list from metadata tables ?
Следующее
От: "Gauthier, Dave"
Дата:
Сообщение: Re: How to get stored procedure args list from metadata tables ?