Re: Switching between terminals - Mailing list pgsql-hackers

From Csaba Nagy
Subject Re: Switching between terminals
Date
Msg-id 1215097157.2834.133.camel@PCD12478
Whole thread Raw
In response to Switching between terminals  (cinu <cheriyamoozhiyilcinu@yahoo.co.in>)
List pgsql-hackers
On Thu, 2008-07-03 at 19:56 +0530, cinu wrote:
> Could anyone please tell me where I am going wrong and if there is a
> way I can get the same behaviour that I am getting while I am
> executing the through psql prompt.

You're mistake is that you think a transaction is related to your
terminal, but it is in fact tied to the psql session you are running...

Your first example is running one psql instance per terminal, hence one
transaction per terminal, while in your second example the transaction
is terminated each time psql finishes to run. Basically what you're
asking for is to keep a transaction opened by one session (the first
psql execution) and connect to it with the second session (the second
psql call) and continue the transaction which was opened by the first
one... which I'm pretty sure is wrong to want. It is likely possible to
do (using PREPARE TRANSACTION), but even likelier that it is a wrong
thing to do in normal circumstances. If you'll say what you really want
to do, I bet you'll get a lot more useful advices...

Cheers,
Csaba.



pgsql-hackers by date:

Previous
From: cinu
Date:
Subject: Switching between terminals
Next
From: Gregory Stark
Date:
Subject: Re: Switching between terminals