oracle profiler安装

比较好的安装资料

 

http://www.qudong.com/soft/program/Oracle/xingnenyouhua/20080507/11120.html

 

安装完之后测试存储过程

 

 

test

 

之后

 

begin
  -- Call the procedure
  dbms_profiler.start_profiler('');
  task(start_date => :start_date,
             end_date => :end_date);
  dbms_profiler.stop_profiler;            
end;

 

点一下放大镜左面一个按钮,执行完之后再profiler中就能看到分析结果了。

你可能感兴趣的:(profile)