91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Oracle數據庫中有哪些索引類型

發布時間:2021-07-26 15:42:24 來源:億速云 閱讀:2301 作者:Leah 欄目:數據庫

今天就跟大家聊聊有關Oracle數據庫中有哪些索引類型,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

Oracle數據庫中有哪些索引類型

一、B-Tree索引

三大特點:高度較低、存儲列值、結構有序

1. 利用索引特性進行優化

  • 外鍵上建立索引:不但可以提升查詢效率,而且可以有效避免鎖的競爭(外鍵所在表delete記錄未提交,主鍵所在表會被鎖住)。

  • 統計類查詢SQL:count(), avg(), sum(), max(), min()

  • 排序操作:order by字段建立索引

  • 去重操作:distinct

  • UNION/UNION ALL:union all不需要去重,不需要排序

2. 聯合索引

應用場景一:SQL查詢列很少,建立查詢列的聯合索引可以有效消除回表,但一般超過3個字段的聯合索引都是不合適的.

應用場景二:在字段A返回記錄多,在字段B返回記錄多,在字段A,B同時查詢返回記錄少,比如執行下面的查詢,結果c1,c2都很多,c3卻很少。

select count(1) c1 from t where A = 1; select count(1) c2 from t where B = 2; select count(1) c3 from t where A = 1 and B = 2;

聯合索引的列誰在前?

普遍流行的觀點:重復記錄少的字段放在前面,重復記錄多的放在后面,其實這樣的結論并不準確。

drop table t purge; create table t as select * from dba_objects; create index idx1_object_id on t(object_id,object_type); create index idx2_object_id on t(object_type,object_id);

等值查詢:

select * from t where object_id = 20 and object_type = 'TABLE'; select /*+ index(t,idx1_object_id) */ * from t where object_id = 20 and object_type = 'TABLE'; select /*+ index(t,idx2_object_id) */ * from t where object_id = 20 and object_type = 'TABLE';

結論:等值查詢情況下,組合索引的列無論哪一列在前,性能都一樣。

范圍查詢:

select * from t where object_id >=20 and object_id < 2000 and object_type = 'TABLE'; select /*+ index(t,idx1_object_id) */ * from t where object_id >=20 and object_id < 2000 and object_type = 'TABLE'; select /*+ index(t,idx2_object_id) */ * from t where object_id >=20 and object_id < 2000 and object_type = 'TABLE';

結論:組合索引的列,等值查詢列在前,范圍查詢列在后。  但如果在實際生產環境要確定組合索引列誰在前,要綜合考慮所有常用SQL使用索引情況,因為索引過多會影響入庫性能。

3. 索引的危害

表上有過多索引主要會嚴重影響插入性能;

  • 對delete操作,刪除少量數據索引可以有效快速定位,提升刪除效率,但是如果刪除大量數據就會有負面影響;

  • 對update操作類似delete,而且如果更新的是非索引列則無影響。

4. 索引的監控

--監控 alter index [index_name] monitoring usage; select * from v$object_usage; --取消監控:  alter index [index_name] nomonitoring usage;

根據對索引監控的結果,對長時間未使用的索引可以考慮將其刪除。

5. 索引的常見執行計劃

  • INDEX FULL SCAN:索引的全掃描,單塊讀,有序

  • INDEX RANGE SCAN:索引的范圍掃描

  • INDEX FAST FULL SCAN:索引的快速全掃描,多塊讀,無序

  • INDEX FULL SCAN(MIN/MAX):針對MAX(),MIN()函數的查詢

  • INDEX SKIP SCAN:查詢條件沒有用到組合索引的第一列,而組合索引的第一列重復度較高時,可能用到

二、位圖索引

應用場景:表的更新操作極少,重復度很高的列。

優勢:count(*) 效率高

create table t( name_id, gender not null, location not null, age_range not null, data )as select  rownum, decode(floor(dbms_random.value(0,2)),0,'M',1,'F') gender, ceil(dbms_random.value(0,50)) location, decode(floor(dbms_random.value(0,4)),0,'child',1,'young',2,'middle',3,'old') age_range, rpad('*',20,'*') data from dual connect by rownum <= 100000;
create index idx_t on t(gender,location,age_range); create bitmap index gender_idx on t(gender); create bitmap index location_idx on t(location); create bitmap index age_range_idx on t(age_range);
select * from t where gender = 'M' and location in (1,10,30) and age_range = 'child'; select /*+ index(t,idx_t) */* from t where gender = 'M' and location in (1,10,30) and age_range = 'child';

三、函數索引

應用場景:不得不對某一列進行函數運算的場景。

利用函數索引的效率要低于利用普通索引的。

oracle中創建函數索引即是 你用到了什么函數就建什么函數索引,比如substr

select * from table where 11=1 and substr(field,0,2) in ('01')

創建索引的語句就是

create index indexname on table(substr(fileld,0,2)) online nologging ;

看完上述內容,你們對Oracle數據庫中有哪些索引類型有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上虞市| 门头沟区| 利津县| 白沙| 丰台区| 蕲春县| 北海市| 莲花县| 启东市| 雅安市| 山阴县| 耒阳市| 望谟县| 同江市| 那曲县| 五台县| 罗源县| 乐昌市| 临武县| 大冶市| 吴堡县| 疏勒县| 平塘县| 广河县| 香格里拉县| 嵩明县| 岳西县| 金乡县| 博爱县| 崇阳县| 阿巴嘎旗| 南涧| 陇川县| 和林格尔县| 天祝| 镇远县| 南丰县| 余干县| 道真| 蒙阴县| 阿图什市|