Re: Nested Transactions - Mailing list pgsql-general

From wsheldah@lexmark.com
Subject Re: Nested Transactions
Date
Msg-id 200203131805.NAA14241@interlock2.lexmark.com
Whole thread Raw
In response to Nested Transactions  (cbroussard@liquiddatainc.com (Chris))
List pgsql-general

I don't believe postgresql supports nested transactions yet.

Wes Sheldahl



cbroussard%liquiddatainc.com@interlock.lexmark.com (Chris) on 03/08/2002
02:12:33 AM

To:   pgsql-general%postgresql.org@interlock.lexmark.com
cc:    (bcc: Wesley Sheldahl/Lex/Lexmark)
Subject:  [GENERAL] Nested Transactions


i'm trying to accomplish the following task:

begin transaction;
        begin work;
                create table xyz(
                  id int
                );
        commit work;
        select * from xyz;
rollback transaction;
select * from xyz;  // should say database object doesn't exist

however i'm failing to be able to do this?? is there a specific reason?

I know in MSSQL you can say:

begin transaction
     begin transaction test
          create table xyz(
               id [int]
          );
          select * from xyz
     commit transaction test
rollback transaction
select * from xyz // database object doesn't exist

Is there an equivalent?

TIA

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/users-lounge/docs/faq.html





pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Arrays
Next
From: Manuel Martin
Date:
Subject: how to get info about spatial extension of pgsql?