6 18:43:23
> An: [EMAIL PROTECTED]
> CC: pgsql-general@postgresql.org
> Betreff: Re: [GENERAL] storing transactions
>
> > Iâve been studying the whole evening and donât seem to find an answer:
> > I want to âstoreâ transactions on the server- like viewâs, or,
&g
> I’ve been studying the whole evening and don’t seem to find an answer:
> I want to “store” transactions on the server- like view’s, or, (sorry) as in
> M$ SQL Server CREATE OR REPLACE TRANSACTION xyz()
Of course, it's possible.
What you need is
CREATE OR REPLACE FUNCTION xyz() RETURNS
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
In this context, what is a "transaction"?
On 10/04/06 14:32, Talha Khan wrote:
> You can save your transactions in an sql file and then run that file
> whenever you need to run those transactions.
>
> Regards
> Talha Khan
>
>
> On 10/3/06, [EMAIL
You can save your transactions in an sql file and then run that file whenever you need to run those transactions.
Regards
Talha Khan
On 10/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hi all,I've been studying the whole evening and don't seem to find an answer:I want to "store" transaction
Hi all,
Ive been studying the whole evening and dont seem to find an answer:
I want to store transactions on the server- like views, or, (sorry) as in M$
SQL Server CREATE OR REPLACE TRANSACTION xyz()
Is this possible with postgres or do I have to store all these at the client
side?