Re: DDL - TYPES

Поиск
Список
Период
Сортировка
От Laurenz Albe
Тема Re: DDL - TYPES
Дата
Msg-id 50cb348b4516c13d65cc2fc7220afd6573882b2f.camel@cybertec.at
обсуждение исходный текст
Ответ на DDL - TYPES  (Gambhir Singh <gambhir.singh05@gmail.com>)
Ответы Re: DDL - TYPES
Список pgsql-admin
On Fri, 2024-02-09 at 00:44 +0530, Gambhir Singh wrote:
> I was trying to generate DDL of functions and procedures and generated it successfully
> using the below query.
>
> [...] SELECT pg_get_functiondef(f.oid) [...]
>
> When I tried to execute the generated DDL on other DB, I am getting the below error.
>
> 2024_02_07_IntegrationObjects_D0:3495: ERROR: type "xxxxxxxx" does not exist
>
> I am trying to find a way to generate the DDL of the TYPE, but have not been successful.

The canonical way is

  pg_dump --section=pre-data yourdbname | grep 'CREATE TYPE .*\.xxxxxxxx'

Yours,
Laurenz Albe



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

Предыдущее
От: Gambhir Singh
Дата:
Сообщение: DDL - TYPES
Следующее
От: Ron Johnson
Дата:
Сообщение: Re: DDL - TYPES