Re: [GENERAL] storing transactions

2006-10-06 Thread kaspro
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

Re: [GENERAL] storing transactions

2006-10-05 Thread Chris Mair
> 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

Re: [GENERAL] storing transactions

2006-10-04 Thread Ron Johnson
-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

Re: [GENERAL] storing transactions

2006-10-04 Thread Talha Khan
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

[GENERAL] storing transactions

2006-10-04 Thread kaspro
Hi all, 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() Is this possible with postgres or do I have to store all these at the client side?