Author: Don Burleson
Page: 1 2
In this article I will discuss some important concerns related to database resource usage associated with Oracle SQL operations. New execution plan columns:
Oracle9i and above provide several new execution plan columns. One can run specialized queries to see estimates of resource usage associated with specific steps of Oracle SQL execution:
CPU Cost of the operation:
- The CPU cost of the operation is estimated by the optimizer's cost-based approach.
- CPU_COST column is null for the statements that use the rule-based approach.
- The value of the CPU_COST column is proportional to the number of machine cycles required for the operation.
I/O cost of the operation:
- The I/O cost of the operation is estimated by the optimizer's cost-based approach.
- IO_COST column is null for the statements that use the rule-based approach.
- The value of the IO_COST column is proportional to the number of data blocks read by the operation
Page: 1 2
More Database Articles
Database Security: Step by step guideline
DBA Tips for Verifying Oracle Data Replication!!
RMAN Recovery Made Easy!!
Easy, Efficient & Quick Oracle Cloning!!
How to create an ePub? - Simple Steps to follow!!
|