Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Drawbacks to Serializable Mode?
A copy of this was sent to terrysutton_at_usa.net
(if that email address didn't require changing)
On Thu, 25 Feb 1999 22:33:27 GMT, you wrote:
>We are considering setting a database to Serializable = True to eliminate
>non-repeatable reads.Does anyone have experience with this? What exactly
>are the performance effects? Why shouldn't we do it?--Terry
>
>-----------== Posted via Deja News, The Discussion Network ==----------
>http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
I would use the transaction level isolation settings available with 7.3.3 and up instead of serializable = true in an init.ora for the following reasons:
The initialization parameter SERIALIZABLE=TRUE is no longer supported in Oracle8 and beyond. The default behavior henceforth is as if SERIALIZABLE was set to FALSE. Use the SET TRANSACTION ISOLATION LEVEL SERIALIZABLE command to achieve similar transaction isolation behavior.
Thomas Kyte
tkyte_at_us.oracle.com
Oracle Service Industries
Reston, VA USA
--
http://govt.us.oracle.com/ -- downloadable utilities
![]() |
![]() |