Re: [GENERAL] how to Export ALL plpgsql functions/triggers to file
Naoko Reeves wrote: > Could you tell me how to Export ALL plpgsql > functions/triggers to file? I'd do it as follows: - Perform a pg_dump of the database object definitions: pg_dump -F c -s -f database.dmp database - Create a listing, delete everything except triggers and functions: pg_rest
[GENERAL] how to Export ALL plpgsql functions/triggers to file
Hi, Could you tell me how to Export ALL plpgsql functions/triggers to file? Thank you