Re: [SQL] transaction abortion

From: "Kancha (dot)" <kancha2np(at)yahoo(dot)com>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, pgsql-sql(at)postgresql(dot)org
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [SQL] transaction abortion
Date: 2002-02-26 07:43:41
Message-ID: 20020226074341.15101.qmail@web14914.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

here is the exact query :

begin;

update cst_package set status='f' where cid='28' and
status='t';

insert into cst_package (startdate, enddate, status,
pkgid, cid) values ('2002-02-14', '2003-02-14', 't',
'112', '28');

select acb_transaction.amount as amount,
acb_transaction.iscredit as iscredit, acb_ledger.lid
as lid from acb_transaction,acb_ledger where
acb_ledger.lid = acb_transaction.lid and
acb_ledger.cid =(select cid from cst_customer where
loginname = 'myname') and acb_ledger='t';

It is after the last one ( the select) query the
transaction is aborted. The query is ok. The select
query is executed successfully if it is not within a
transaction.

--- Christopher Kings-Lynne
<chriskl(at)familyhealth(dot)com(dot)au> wrote:
> Hi Kancha,
>
> Chances are you have a syntax error in the select
> statement. Can you please
> port the entire set of queries you are trying to run
> and we'll look at them.
>
> Chris
>
> > -----Original Message-----
> > From: pgsql-sql-owner(at)postgresql(dot)org
> > [mailto:pgsql-sql-owner(at)postgresql(dot)org]On Behalf
> Of Kancha .
> > Sent: Tuesday, 26 February 2002 2:35 PM
> > To: pgsql-sql(at)postgresql(dot)org
> > Cc: pgsql-general(at)postgresql(dot)org
> > Subject: [SQL] transaction abortion
> >
> >
> > I'm in a situtation where transaction is aborted.
> I'm
> > a newbie so please help.
> >
> > I start transaction with begin then do some
> queries
> > like update and insert. So far so good, but when i
> run
> > select query within the transaction the whole
> > transaction is aborted.
> >
> > what should i do ??
> >
> >
> >
>

__________________________________________________
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Kancha . 2002-02-26 07:51:39 Re: [SQL] transaction abortion
Previous Message Christopher Kings-Lynne 2002-02-26 06:47:56 Re: [SQL] transaction abortion

Browse pgsql-sql by date

  From Date Subject
Next Message David BOURIAUD 2002-02-26 07:51:30 Re: About referential integrity.
Previous Message Christopher Kings-Lynne 2002-02-26 06:47:56 Re: [SQL] transaction abortion