Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Microsoft destroys TPC-C records!
Thanks for your point of view. Sorry for my poor english.
Here is my understanding from the manual:
Oracle offers the read committed and serializable isolation levels, as well as a read-only mode that is not part of SQL92. Read committed is the default and was the only automatic isolation level provided before Oracle Release 7.3.
Oracle automatically provides read consistency to a query so that all the data
that the query sees comes from a single point in time
(statement-level read consistency).
Oracle can also provide read consistency to all of the queries in a transaction
(transaction-level read consistency).
Oracle never escalates locks. Lock escalation greatly increases the likelihood of deadlocks
Locks Obtained By DML Statements
INSERT INTO table ... X RX UPDATE table ... X RX DELETE FROM table ... X RX SELECT ... FROM table ... X RX
ROW SHARE MODE RS ROW EXCLUSIVE MODE RX SHARE MODE S SHARE EXCLUSIVE MODE SRX EXCLUSIVE MODE X --------------------------------------------------------X: exclusive
In comp.databases.sybase DNP <High.Flight_at_btinternet.com> wrote:
> David P.
> Oracle Certified DBA.
> ======================================================================
> Then last but not least, why don't you study Oracle's locking model
> before demonstrating your ignorance one more time?
> There's nothing more tiresome than an argument where one person is not
> prepared to listen to the others point of view.
> Then when you have learned to do that, why don't you consider
> intelligently joining in this discussion?
Received on Thu Apr 06 2000 - 00:00:00 CDT