Re: Execute Shell script after insert

From: "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com>
To: "Hannes Dorbath" <light(at)theendofthetunnel(dot)de>
Cc: "Anderson dos Santos Donda" <andersondonda(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: Execute Shell script after insert
Date: 2008-10-27 18:35:45
Message-ID: dcc563d10810271135v4b4879c1s61dea234745f2a6f@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, Oct 27, 2008 at 12:21 PM, Hannes Dorbath
<light(at)theendofthetunnel(dot)de> wrote:
> Anderson dos Santos Donda wrote:
>> Is there a way to execute a simple shell script in server after execute
>> INSERT INTO ?
>>
>> Example?
>>
>> INSERT INTO clients (name) VALUES ('Donda');
>>
>> after it, execute shell : mkdir $1
>
> You might find the following project useful:
>
> http://plsh.projects.postgresql.org/
>
> It adds sh as a procedural language to your PostgreSQL installation.
> Please be aware that there are the same security concerns as with all
> other untrusted procedural languages.

Note that if you can't get that to work (I think there were some
issues with it and the latest versions of pgsql) you use almost any
untrusted pl language to accomplish the same thing, plperlu, plphpu,
pltclu etc...

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Hannes Dorbath 2008-10-27 18:37:36 Re: EXECUTE in trigger functions.
Previous Message Hannes Dorbath 2008-10-27 18:21:24 Re: Execute Shell script after insert