 |
|
Oracle Tips by Burleson |
OCP Instructors Guide for
Oracle DBA Certification
Chapter 7 - Tuning and Performance
Data Segment Compression
Although UPDATE and DELETE operations can be performed on compressed
data in Oracle, the performance impact the compress and uncompress
operations have on those statements is yet to be determined.
Oracle recommends that compressed data be highly considered for data
warehouse environments because data block compression is highly
optimized for direct-load operations
The Oracle Database Performance Tuning
(1Z0-033) certification test may have a question on Optimizer Data
Compression. Test candidates should have a basic understanding of:
Using Explain Plan to
Determine Access Paths
The "EXPLAIN PLAN" statement is used to show
the access path the optimizer has chosen for a particular SQL
statement.
Before issuing an EXPLAIN PLAN statement, you
need to run utlxplan.sql to create a plan table to hold its
output. utlxplan.sql can be found in the rdbms/admin
directory in most installations. utlxplan.sql creates a table
called plan_table, which is owned by the account that
executed utlxplan.sql plan_table is the default table into
which the EXPLAIN PLAN statement inserts rows describing execution
plans.
The above text is
an excerpt from:
OCP Instructors Guide for Oracle DBA Certification
A Study Guide to Advanced Oracle Certified Professional Database
Administration Techniques
ISBN 0-9744355-3-8
by Christopher T. Foot
http://www.rampant-books.com/book_2003_2_OCP_print.htm
|
Download your Oracle scripts now:
www.oracle-script.com
The
definitive Oracle Script collection for every Oracle professional DBA
|
|