檢視索引的統計資訊

2021-10-17 04:36:44 字數 730 閱讀 7058

drop table t11;

--插入10萬條,c1資料分布均勻

create table t11 as select level c1,level c2 from dual connect by

level<=100000;

--插入2萬條c1=100,使該值數量很大,造成c1分布不均勻

insert into t11 select 100,level from dual connect by level<=20000; --給c1列建立索引

收集統計資訊

實際有20001t條資料,資料分布不均勻導致範圍掃瞄時cbo估算不準確

檢視統計資訊 指令碼

我們要去 check 為啥過期了 看一下 為啥 統計資訊過期了,簡化了,自己考慮複雜情況 select from all tab modifications where table owner in select object owner from plan table and table name...

檢視Oracle中表的統計資訊

oracle資料庫在執行sql語句的時候,會根據統計資訊計算怎樣執行效能更優,當執行效能比自己想象的慢時,就有可能是統計資訊不新導致,檢視統計資訊常用的方式有如下三種 1 檢視當前使用者下的統計資訊 select from user tab statistics t where t.table na...

PS命令 檢視靜態的程序統計資訊

ps 是linux系統常用的程序檢視工具,主要顯示 包含當前的各種程序完整資訊的靜態快照 第一種 a 顯示當前終端下的所有程序資訊,包括其他使用者的程序 u 使用以使用者為主的格式輸出程序資訊 x 顯示當前使用者在所有終端下的程序資訊 root localhost ps aux 可以顯示系統中所有的...