実行計画を確認する

Pocket

【概要】
V$SQL_PLANは、ライブラリ・キャッシュにロードされる子カーソルごとの実行計画情報を示します。
【SQL文】
/*
|| ■実行計画を確認する
||
|| 【項目の説明】
*/
set echo off
set lines 200
set pages 1000

clear col
ttitle off

col address for a20
col hash_value for 999,999
col sql_id for a20
col plan_hash_value for 999,999
col full_plan_hash_value for 999,999
col child_address for a20
col child_number for 999,999
col timestamp for a15
col operation for a20
col options for a15
col object_owner for a10
col object_name for a30
col object_type for a10
col optimizer for a10
col cost for 999,999
col bytes for 999,999
col time for 999

ttitle left ‘■■■ SQL_PLAN情報 ■■■’
spool sqlplan_info.lis

SELECT host
FROM v$sql_plan
;
spool off
clear col
ttitle off
set line 80

以上です (^^♪