「Oracle EXPLAIN PLAN」の版間の差分
ナビゲーションに移動
検索に移動
(同じ利用者による、間の2版が非表示) | |||
1行目: | 1行目: | ||
==EXPLAIN PLAN== | ==EXPLAIN PLAN== | ||
− | [[Oracle]] | | + | [[Oracle]] | [[Category:DBパフォーマンス]] |
− | @$ORACLE_HOME/RDBMS/ADMIN/UTLXPLAN.SQL | + | @$ORACLE_HOME/RDBMS/ADMIN/UTLXPLAN.[[SQL]] |
truncate table plan_table; | truncate table plan_table; | ||
18行目: | 18行目: | ||
AND statement_id = 'plan_test' | AND statement_id = 'plan_test' | ||
ORDER BY id | ORDER BY id | ||
− | |||
− |
2022年5月19日 (木) 14:46時点における最新版
EXPLAIN PLAN
Oracle |
@$ORACLE_HOME/RDBMS/ADMIN/UTLXPLAN.SQL truncate table plan_table; explain plan set statement_id='plan_test' for [SQL_Statement] SELECT cardinality "Rows", lpad(' ',level-1)||operation||' '|| options||' '||object_name "Plan" FROM PLAN_TABLE CONNECT BY prior id = parent_id AND prior statement_id = statement_id START WITH id = 0 AND statement_id = 'plan_test' ORDER BY id
© 2006 矢木浩人