oracle 9i啟用Execution Plan

fanhongjie發表於2008-04-17
主要有四步:
[@more@]
1.建立表,透過utlxplan.sql指令碼
SQL> @?/rdbms/admin/utlxplan.sql
2. 建立同義詞為了多個使用者可以共享一個plan_table 並授權給public
SQL> create public synonym plan_table for plan_table;
SQL> grant all on plan_table to public;
3.建立plustrace 角色
SQL> @?/sqlplus/admin/plustrce.sql 執行這個指令碼就可以了。
4、將角色許可權授予public
sql>grant plustrace to public;
完成以上幾步就可以使用autotrace 功能
set timing on --顯示執行時間
set autotrace on 檢視執行計劃和查詢資訊
set autotrace traceonly 只顯示執行計劃,但不顯示查詢輸出

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/73920/viewspace-1002682/,如需轉載,請註明出處,否則將追究法律責任。

相關文章