Write fast and efficient PLSQL - DBMS_PROFILER



http://www.oracleflash.com/44/Write-fast-and-efficient-PLSQL---DBMS_PROFILER.html

Before DBMS_PROFILER was introduced tuning long PL/SQL programs was a great pain. Tuning PL/SQL was done by SQL TRACE and TKPROF. Code of thousands of lines was monitored via DBMS_UTILITY.GET_TIME to measure time consumed by individual statements.

With the presence of DBMS_PROFILER this has become quite easy to monitor the performance of the PL/SQL programs and identifying the culprit statements consuming too much time while the run of the program.

In this article we have two procedures. One of them uses literals in the queries and the other uses bind variables. We noticed that the program using literals taking too much time. We will then use DBMS_PROFILER to pin point the statement consuming most of the time.

$ cd $ORACLE_HOME/rdbms/admin
$ sqlplus / as sysdba

/*
 Run profload.sql which will install the DBMS_PROFILER package.
*/

SQL> @profload.sql

Package created.


Grant succeeded.


Synonym created.


Library created.


Package body created.

Testing for correct installation
SYS.DBMS_PROFILER successfully loaded.

PL/SQL procedure successfully completed.

/*
 Now create the user for a test of DBMS_PROFILER.
*/

SQL> create user plsql_prof_test identified by test;

User created.

SQL> grant connect , resource to plsql_prof_test;

Grant succeeded.

SQL> conn plsql_prof_test/test
Connected.

/*
 Once connected run proftab.sql which will create special tables where
 profiler puts its results.
*/

SQL> @proftab.sql
drop table plsql_profiler_data cascade constraints
           *
ERROR at line 1:
ORA-00942: table or view does not exist


drop table plsql_profiler_units cascade constraints
           *
ERROR at line 1:
ORA-00942: table or view does not exist


drop table plsql_profiler_runs cascade constraints
           *
ERROR at line 1:
ORA-00942: table or view does not exist


drop sequence plsql_profiler_runnumber
              *
ERROR at line 1:
ORA-02289: sequence does not exist



Table created.


Comment created.


Table created.


Comment created.


Table created.


Comment created.


Sequence created.

DBMS_PROFILER

 setup is complete now. Create table that we will use in our PL/SQL code that we will investigate through DBMS_PROFILER package.

SQL> create table t1 (col1 varchar2(30), col2 varchar2(30));

Table created.

Create two different procedures one using literals in the queries and other using bind variables.

SQL> create or replace procedure literals
  2  is
  3   vNumber number;
  4  begin
  5   for i in 1..100000 loop
  6     vNumber := dbms_random.random;               
  7     execute immediate 
  8      'insert into t1 values ('||vNumber||','||vNumber||')';
  9   end loop;
 10   end;
 11  /

Procedure created.

SQL> create or replace procedure binds
  2  is
  3   vNumber number;
  4  begin
  5   for i in 1..100000 loop
  6     vNumber := dbms_random.random;
  7     insert into t1 values (vNumber,vNumber);
  8   end loop;
  9  end;
 10  /

Procedure created.

dbms_profiler.start_profiler

 starts the profiler before the execution of the PL/SQL program.

dbms_profiler.stop_profiler

 stops the profiler once the program finishes executing.
First run the procedure with the queries that contain literals.

SQL> execute dbms_profiler.start_profiler('literals');

PL/SQL procedure successfully completed.

SQL> exec literals;

PL/SQL procedure successfully completed.

SQL> execute dbms_profiler.stop_profiler;

PL/SQL procedure successfully completed.

The literals run is finished now run the program which contains queries with bind variables.

SQL> execute dbms_profiler.start_profiler('binds');

PL/SQL procedure successfully completed.

SQL> exec binds;

PL/SQL procedure successfully completed.

SQL> execute dbms_profiler.stop_profiler;

PL/SQL procedure successfully completed.

As binds run is complete now we can see the result of these runs captured by DBMS_PROFILER.

SQL> set lines 10000
SQL> column run_owner format a30
SQL> column run_comment format a10
SQL> select runid,
  2         run_owner, 
  3         run_date,
  4         run_total_time/1000000000 run_total_time,
  5         run_comment
  6  from plsql_profiler_runs;

RUNID      RUN_OWNER           RUN_DATE  RUN_TOTAL_TIME RUN_COMMEN
---------- ------------------- --------- -------------- ----------
         1 PLSQL_PROF_TEST     21-MAY-10           91.0 literals
         2 PLSQL_PROF_TEST     21-MAY-10           17.1 binds

/*
 plsql_profiler_runs has summary of all dbms_profiler runs.
*/

SQL> column text format a55
SQL> column total_time format 99.9
SQL> column min_time format 99.9
SQL> column max_time format 99.9
SQL> select s.text ,
  2         p.total_occur ,
  3         p.total_time/1000000000 total_time,
  4         p.min_time/1000000000 min_time,
  5         p.max_time/1000000000 max_time
  6  from plsql_profiler_data p, user_source s, plsql_profiler_runs r
  7  where p.line# = s.line
  8  and   p.runid = r.runid
  9  and   r.run_comment = 'literals'
 10* and   s.name ='LITERALS'
SQL> /

TEXT                           TOTAL_OCCUR TOTAL_TIME MIN_TIME MAX_TIME
------------------------------ ----------- ---------- -------- --------
procedure literals                       1         .0       .0       .0
procedure literals                       3         .0       .0       .0
procedure literals                       0         .0       .0       .0
for i in 1..100000 loop             100001         .1       .0       .0
vNumber := dbms_random.random;      100000         .3       .0       .0
execute immediate                   100000       71.2       .0       .5
'insert into t1 values ('||vN
umber||','||vNumber||')';
end;                                     1         .0       .0       .0
procedure literals                       2         .0       .0       .0

8 rows selected.

SQL> select s.text ,
  2         p.total_occur ,
  3         p.total_time/1000000000 total_time,
  4         p.min_time/1000000000 min_time,
  5         p.max_time/1000000000 max_time
  6  from plsql_profiler_data p, user_source s, plsql_profiler_runs r
  7  where p.line# = s.line
  8  and   p.runid = r.runid
  9  and   r.run_comment = 'binds'
 10* and   s.name ='BINDS'
SQL> /

TEXT                           TOTAL_OCCUR TOTAL_TIME MIN_TIME MAX_TIME
------------------------------ ----------- ---------- -------- --------
procedure binds                          1         .0       .0       .0
procedure binds                          3         .0       .0       .0
procedure binds                          0         .0       .0       .0
for i in 1..100000 loop             100001         .0       .0       .0
vNumber := dbms_random.random;      100000         .2       .0       .0
insert into t1 values (vNumber      100000        6.9       .0       .4
,vNumber);               
end;                                     1         .0       .0       .0
procedure binds                          2         .0       .0       .0

8 rows selected.

SQL> 

As it can clearly be seen that all the time was being consumed by the INSERT statement that was using literals. Rest of the lines in the code are doing just fine.

The test that we ran is also an evidence of using bind variables is better then using literals in most cases. The statement that was using literals consumed 71 seconds and the statement using bind variables consumed only 7 seconds. And this difference will be even more when multiple sessions are running this program because they will then cause contention on shared pool latches as they all will be parsing same statement again and again.

發佈了11 篇原創文章 · 獲贊 4 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章