May 5, 2016

Points Explain Plans

  • The rightmost uppermost operation of an explain plan is the first thing that the explain plan will execute.
  • Read Right-Left and Top-Down on the same indentation level.
  • Try to reduce the cardinality of the rowset as soon as possible.
  • Using an index is not always the most beneficial approach. Where greater than 10% of rows in any table are joined, a HASH JOIN and Full Table Scan may be the best approach.
  • Trust the Cost Based Optimiser but experiment by running the query. Cost and duration are not always the same.
  • We use a SORT_AREA_SIZE set for Online Transaction Processing. Consider setting SORT_AREA_SIZE larger for long running batch jobs and other larger tables, but do this outside the normal working hours.
  • This can be done using ALTER SESSION SET SORT_AREA_SIZE = 2M;

Oracle Trace - tkprof

Oracle Trace 

 Explain plan provides an approximation of the cost of an individual SQL statement . It doesn’t always correspond to what is happening when SQL is executed and it doesn’t tell you the elapsed time or other important statistics.

We can then analyse the trace file using tkprof to present the output in a more meaningful manner for subsequent analysis.

How to do trace
  • Initiate a forms or PL/SQL session
  • Identify the Sid and Serial# of the session you wish to trace via PL/SQL Developer (Tools-Sessions menu entry)
  • Establish a point in the application where you want to initiate tracing e.g. on a button click
  • Log in as dba or ask a colleague to do so if you don’t have access
  • Run the following SQL as dba to initiate the trace
    begin dbms_monitor.session_trace_enable(session_id => Sid , serial_num => Serial#); end;
  • Run the following SQL as awcdba to stop tracing
         begin dbms_monitor.session_trace_disable(session_id => Sid , serial_num => Serial#); end;
  • Log in to the database server .
  • The log file will be available in the USER_DUMP_DEST directory. In our environments this is set to /oralog//udump.
Running TKPROF
  • Identifying the trace file
  • ALTER SESSION SET TRACEFILE_IDENTIFIER = 'my_trace_id';
  • Formatting the trace file using tkprof
  • tkprof filename.trc output_filename.txt sys=no sort=(prsela,fchela,exeela)
  • This sorts the statements from longest running to shortest running. This format allows you to concentrate on the top two or three statements for the most impact.
    Sort on elapsed parse time, fetch-time, elapsed executed time
  • SYS=NO omits SQL executed by the SYS user or recursive SQL.
  • Warning: You need to ensure that the trace file isn’t too large. Limit the size of the trace file using the following SQL.
  • ALTER SESSION SET MAX_DUMP_FILE_SIZE = 10M;
Interpreting Trace File Output

The Parse Phase – Oracle finds the Query in the Shared Pool or creates a new plan for the query (Hard Parse).
Note: Hard parses aren’t good in OLTP systems. That’s why we should always use bind variables.

The Execute Phase – This is the work done by Oracle on OPEN or EXECUTE of the query. For a SELECT this will be empty whereas for an UPDATE, this will be where all the work is done.

The Fetch Phase – For a SELECT this will be where most of the work is done and visible, but an update will show no work.

Column Headings
COUNT      - How many times the event occurred
CPU           - In CPU seconds; how much time was spent
ELAPSED  - As measured by the wall clock
DISK           - How many Physical I/O’s to disk
QUERY      - Blocks read in Consistent mode from Undo segment
CURRENT – Blocks accessed as they are now for UPDATES or Data Dictionary lookups.


Observations on the query plans In trace file
  1. CR  Consistent Read ie. Logical IO from the Buffer Cache in the SGA in query mode
  2. PR  Physical Read from disk.
  3. If the ratio of PR to CR is high then we have a problem!
  4. We aren’t using logical IO and the buffer cache
  5. The query is returning too much data and swamping the buffer cache.
Advantages of tracing
  • Tracing is very useful for diagnosing poor performance.
  • It provides far more detail than a simple explain plan.
  • Using proper sorts quickly identifies the “worst offenders”
  • Experiment with different access paths. Try to reduce the cost of the query.
  • Hints don’t always work. The Cost Based Optimiser often knows best.
  • Remove functions on join predicates where you can to enable index use.
  • Pay attention to cardinality/selectivity of predicates to determine join order.
  • Often application tuning gains the best results. e.g. Amalgamate SQL. Use Analytic SQL

Apr 7, 2016

USING clause in EXECUTE IMMEDIATE


BEGIN
   INSERT INTO MY_DATA  VALUES (1, 'STEVEN');
   INSERT INTO MY_DATA  VALUES (2, 'VEVA');
   INSERT INTO MY_DATA VALUES (3, 'ELI');
   COMMIT;
END;


(a)  
 DECLARE
   TYPE MY_DATA_T IS TABLE OF MY_DATA%ROWTYPE INDEX BY PLS_INTEGER;
   L_MY_DATA   MY_DATA_T;
BEGIN
   EXECUTE IMMEDIATE
      'DELETE FROM my_data
         WHERE nm <> :nmvalue
           AND pky <> :keyvalue
           AND SUBSTR (nm, 1, 3) = :nmvalue'
     USING 'abc' ,5  ,'def';
END;
 

(b)
DECLARE
   TYPE MY_DATA_T IS TABLE OF MY_DATA%ROWTYPE INDEX BY PLS_INTEGER;
   L_MY_DATA   MY_DATA_T;
BEGIN
   EXECUTE IMMEDIATE
      'begin
           DELETE FROM my_data
            WHERE nm <> :nmvalue
              AND pky <> :keyvalue
              AND SUBSTR (nm, 1, 3) = :nmvalue;
        end;'
      USING 'abc', 5 ;    
END;



What is the difference between the PLSQL (a) & (b) 




When executing dynamic SQL, you must provide an expression or variable for each placeholder.


When executing dynamic PL/SQL, you must provide an expression or variable for each uniquely-named placeholder.

Mar 23, 2016

High Water Mark

High water mark is the maximum amount of database blocks used so far by a segment. This mark cannot be reset by delete operations.


When an INSERT statement cannot find a free block to populate, it goes straight to the High Water Mark and allocates a new block.When rows are deleted, the High Water Mark does not come down.

Inorder to remove the empty blocks in the HWM you need to issue the following two commands


ALTER TABLE emp ENABLE ROW MOVEMENT;
ALTER TABLE emp SHRINK SPACE;

ROWIDs are normally assigned to a row for the life time of the row at insert time.  Oracle can move a table row using the first command .

It will read the table, it will delete/insert the rows at the bottom of the table to move them up, it will generate redo, it will generate undo thus can relocate and reorganize rows in a table including it will change rowids


The second step adjusts the high watermark. For this Oracle needs an exclusive table lock,but for a very short moment only.
 - can be done online
 - indexes will be maintained and remain usable