PL / SQL Hierarchical Profiler、こちら 、必要な権限があることを前提とすると、実際には非常に簡単に実行できます。
基本的には、次のようなPL/SQLブロックを実行する必要があります。
begin
dbms_hprof.start_profiling('PLSHPROF_DIR', 'test.trc');
your_top_level_procedure;
dbms_hprof.stop_profiling;
end;
plshprof
ユーティリティは、生のプロファイラー出力ファイル(test.trc
)からHTMLレポートを生成します。 上記の例では)。