From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | "Gevik babakhani" <gevik(at)xs4all(dot)nl> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: executing OS programs from pg |
Date: | 2005-06-03 19:16:29 |
Message-ID: | 12059.1117826189@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
"Gevik babakhani" <gevik(at)xs4all(dot)nl> writes:
> Does anyone know how to execute an OS command from pgsql. I would like to
> create a trigger that op on firing would run/execute an external program.
Use any of the "untrusted" PLs to execute system() or the like.
Whether this is a good idea or not is a different question --- there are
excellent reasons why it is a *bad* idea to execute outside-the-database
actions from within a trigger. Mainly that the actions won't be undone
if the transaction later rolls back, and now your database state is
inconsistent with outside-the-database state. See the list archives for
many past discussions of this point and safer ways to design your
application.
(BTW, this is hardly material for -hackers.)
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Bruno Wolff III | 2005-06-03 19:24:51 | Re: O_DIRECT for WAL writes |
Previous Message | Luke Lonergan | 2005-06-03 19:14:19 | Re: NOLOGGING option, or ? |