| > |
|
This is a tricky area. I wrote a white paper called How Many Transactions which discusses this in depth. The white paper can be found on my web site. Basically, Oracle considers a transaction to be any INSERT, UPDATE, or DELETE statement. All of those statements are "executed". But SELECT statements are also executed. The STATSPACK tool considers all executions to be all INSERT, UPDATE, DELETE, and SELECT statements, whereas the number of transactions omits the SELECT statements. Please look at my white paper which shows in detail how Oracle counts these.
|
|