Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: How to begin a transaction PART II

Re: How to begin a transaction PART II

From: No Name <louisparsonsusa_at_netscape.net>
Date: Fri, 08 Feb 2002 16:52:19 GMT
Message-ID: <3C63F5C5.6040301@netscape.net>


ISOLATION_LEVEL = { SERIALIZABLE | READ COMMITTED } The ISOLATION_LEVEL parameter specifies how transactions containing database modifications are handled. ISOLATION_LEVEL is a session parameter only, not an initialization parameter.

Given that the transaction is already set to serializable isn't it clear that it MUST be read-write?

Carlos Hernández wrote:

> Ok. I undertand the concepts.
>
> But, if I would like change the isolation level of a transaction (via SQL
> Plus) and initiate the transaction on the next line on mode Read Write?
>
> This code on PL/SQL via SQL PLUS not runs:
>
> set transaction isolation level serializable;
> set transaction read write; ( <- ORA-01453 )
>
> Update ....... (Begin the transaction)
>
> Commit;
>
> How to change the isolation level and mode read/write on the same
> transaction?
>
> Thanks.
>
> Carlos Hernández
> Barcelona (Spain)
>
>
>
>
Received on Fri Feb 08 2002 - 10:52:19 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US