|
EXPALIN PLAN Explain plan is a statement that analyzes and displays the execution
plans for a SQL statement
• SQL Trace A utility that writes a trace file containing performance statistics.
• TKPROF A utility that translates the SQL_TRACE file into readable output and can
also show the execution plan for a SQL statement.
• Analyze A statement that compiles statistics for use by the cost-based optimizer to
contruct its execution plan, also produces additional information to detect chained rows
and capacity planning etc.
• UTLBSTAT and UTLESTAT Scripts that produce a snapshot of how the database is
performing from the time you start UTLBSTAT (begin) until you run UTLESTAT(end). |
|