Autotrace的配置與分析
- sysdba登入系統
sqlplus "/ as sysdba"
- 執行sql
sys@DEMO> @/u01/app/oracle/product/10.2.0/db_1/rdbms/admin/utlxplan.sql
Table created.
- 建立同位語 --- 若存在則報錯誤資訊
sys@DEMO> create public synonym plan_table for plan_table;
create public synonym plan_table for plan_table
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
- 賦予public許可權
sys@DEMO> grant all on plan_table to public;
- 控制trace產生
-- set autotrace off; --- 不顯示,預設設定
-- set autotrace on; --- 顯示
-- set autotrace on explain; --- 只顯示最佳化器執行計劃
-- set autotrace statistics; --- 只顯示統sql計資訊
-- set autotrace traceonly; --- 於on相似,但不顯示查詢結果
-- set autotrace traceonly explain; --- 只顯示最佳化器執行計劃(不執行真正查詢,所以快)
sqlplus "/ as sysdba"
- 執行sql
sys@DEMO> @/u01/app/oracle/product/10.2.0/db_1/rdbms/admin/utlxplan.sql
Table created.
- 建立同位語 --- 若存在則報錯誤資訊
sys@DEMO> create public synonym plan_table for plan_table;
create public synonym plan_table for plan_table
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
- 賦予public許可權
sys@DEMO> grant all on plan_table to public;
- 控制trace產生
-- set autotrace off; --- 不顯示,預設設定
-- set autotrace on; --- 顯示
-- set autotrace on explain; --- 只顯示最佳化器執行計劃
-- set autotrace statistics; --- 只顯示統sql計資訊
-- set autotrace traceonly; --- 於on相似,但不顯示查詢結果
-- set autotrace traceonly explain; --- 只顯示最佳化器執行計劃(不執行真正查詢,所以快)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22558114/viewspace-1097818/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Autotrace的設定與使用
- oracle之autotrace統計資訊分析Oracle
- 【AUTOTRACE】SQL優化的重要工具--AUTOTRACESQL優化
- Oracle AutotraceOracle
- 設定sql plus 的autotraceSQL
- oracle10g_10.2.0.1_sql tuning_set autotrace配置OracleSQL
- Oracle 9I 下的AutoTraceOracle
- 關於ORACLE AUTOTRACEOracle
- set autotrace in SQL*PlusSQL
- ORACLE 使用AUTOTRACE功能Oracle
- Autotrace 用法總結
- Istio 的配置分析
- set autotrace on [configure]
- ORACLE 10G AUTOTRACEOracle 10g
- AutoTRACE是分析SQL的執行計劃,執行效率的一個非常簡單方便的工具SQL
- set autotrace的用法和含意及區別
- 如何啟用sqlplus的AutoTrace功能SQL
- 設定autotrace全過程
- 安裝並設定autotrace
- Set autotrace命令及解釋
- Oracle最佳化工具——AutoTraceOracle
- Linux開機啟動分析與系統配置Linux
- EXPLAIN PLAN FOR 和 SET AUTOTRACE之間的差別AI
- 設定autotrace的報錯問題解決
- KafkaSpout分析:配置Kafka
- 自動設定autotrace環境
- oracle 9i 開啟autotrace onOracle
- 核心表AUTOTRACE結果出錯
- 【優化】ORACLE set autotrace in SQL*Plus優化OracleSQL
- 以太坊創世區塊與鏈配置載入分析
- ASM的配置與管理ASM
- WAS與IHS整合的安裝與配置
- 獲取執行計劃之Autotrace
- Autotrace工具使用——小工具,大用場
- 開啟執行計劃set autotrace on
- set autotrace的選項和計劃報告的屬性
- SQL效能的度量 - 語句級別的SQL跟蹤autotraceSQL
- 【原創】autotrace中statistics為0的問題的解決