Re: pg_dumpall from a script - Mailing list pgsql-general

From Raghu Ram
Subject Re: pg_dumpall from a script
Date
Msg-id CALnrrJRSaN5=NcPmW_SD5JoVH=9K2D5iwE+GqcdNdQ389fgLow@mail.gmail.com
Whole thread Raw
In response to Re: pg_dumpall from a script  (James Sewell <james.sewell@lisasoft.com>)
List pgsql-general

On Tue, Oct 22, 2013 at 10:50 AM, James Sewell <james.sewell@lisasoft.com> wrote:

That looks great, but it doesn't really help with my problem unless I'm missing something (very possible!)

I need a way to backup either from SQL in PSQL (possibly \!) or from a PG/PLSQL function to a file with a name set from a :variable.

This would be triggered by a certain action in the database (applying a patch).

Hope that's a bit clearer! 



You can use a stored procedure with this plsh http://plsh.projects.postgresql.org/ , like this: 



CREATE FUNCTION dump_db(text, text) RETURNS text AS ' 

#!/bin/sh 

pg_dump $1 > $2 

' LANGUAGE plsh; 



Note that you must CREATE LANGUAGE first, $1 is db_name, $2 is file name and check for write permissions of $2.


Thanks & Regards

Raghu Ram


 

pgsql-general by date:

Previous
From: John R Pierce
Date:
Subject: Re: PostgreSQL Point In Time Recovery
Next
From: Eelke Klein
Date:
Subject: Wrong estimate in query plan