Обсуждение: DDLs of a Function

Поиск
Список
Период
Сортировка

DDLs of a Function

От
pratmeht
Дата:
Hi Postgres Community,

We want to drop a table and recreate it. As we all know, dropping a table
even drops the dependent objects like views, MVs, functions. I wanted your
help to get the DDL of the (dependent) function before we can drop the
table. Once the dropped table is being recreated, this DDL will be helpful
to recreate that function.

We found a way to get the DDL of the Views and MVs, but not for function! :(
Can someone please help ?

Regards,
Pratik Mehta



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-admin-f2076596.html



Re: DDLs of a Function

От
Omkar Dhorge
Дата:
Hello Pratik,

There is a open source db client 'dbeaver'

You can use this to get the DDLs for the functions.

Attached is the screenshot for your reference,





On Tue, 17 Dec, 2019, 10:30 AM pratmeht, <pratikmehta28@gmail.com> wrote:
Hi Postgres Community,

We want to drop a table and recreate it. As we all know, dropping a table
even drops the dependent objects like views, MVs, functions. I wanted your
help to get the DDL of the (dependent) function before we can drop the
table. Once the dropped table is being recreated, this DDL will be helpful
to recreate that function.

We found a way to get the DDL of the Views and MVs, but not for function! :(
Can someone please help ?

Regards,
Pratik Mehta



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-admin-f2076596.html


Вложения

Re: DDLs of a Function

От
Laurenz Albe
Дата:
On Mon, 2019-12-16 at 22:00 -0700, pratmeht wrote:
> We want to drop a table and recreate it. As we all know, dropping a table
> even drops the dependent objects like views, MVs, functions. I wanted your
> help to get the DDL of the (dependent) function before we can drop the
> table. Once the dropped table is being recreated, this DDL will be helpful
> to recreate that function.
> 
> We found a way to get the DDL of the Views and MVs, but not for function! :(
> Can someone please help ?

You can use "pg_get_functiondef":

SELECT pg_get_functiondef('pg_get_functiondef'::regproc);

                      pg_get_functiondef                       
---------------------------------------------------------------
 CREATE OR REPLACE FUNCTION pg_catalog.pg_get_functiondef(oid)+
  RETURNS text                                                +
  LANGUAGE internal                                           +
  STABLE PARALLEL SAFE STRICT                                 +
 AS $function$pg_get_functiondef$function$                    +
 
(1 row)

This article contains something about view dependencies:
https://www.cybertec-postgresql.com/en/tracking-view-dependencies-in-postgresql/

Yours,
Laurenz Albe
-- 
Cybertec | https://www.cybertec-postgresql.com




Re: DDLs of a Function

От
pratmeht
Дата:
Hi Laurenz,

Thank you so much for your reply. I will check then and let you know how it
goes.

Regards,
Pratik



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-admin-f2076596.html



Re: DDLs of a Function

От
pratmeht
Дата:
Hi Omkar,

Thank you so much for your reply. I will check and let you know how it goes.

Regards,
Pratik



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-admin-f2076596.html