程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> 概論Oracle索引創建策略

概論Oracle索引創建策略

編輯:Oracle數據庫基礎

學習Oracle時,經常會遇到Oracle索引問題,這裡將介紹Oracle索引問題的解決方法。Oracle索引和對應的表應該位於不同的表空間中,Oracle能夠並行讀取位於不同硬盤上的數據,可以避免產生I/O沖突B樹索引:在B樹的葉節點中存儲索引字段的值與ROWID。唯一索引和不唯一索引都只是針對B樹索引而言.Oracle最多允許包含32個字段的復合索引

Oracle索引創建策略
1.導入數據後再創建索引
2.不需要為很小的表創建索引
3.對於取值范圍很小的字段(比如性別字段)應當建立位圖索引
4.限制表中的索引的數目
5.為索引設置合適的PCTFREE值
6.存儲索引的表空間最好單獨設定

創建不唯一索引

  1. create index emp_ename on employees(ename)  
  2. tablespace users  
  3. storage(......)  
  4. pctfree 0; 

創建唯一索引

  1. create unique index emp_email on employees(email)  
  2. tablespace users; 

創建位圖索引

  1. create bitmap index emp_sex on employees(sex)  
  2. tablespace users; 

創建反序索引

  1. create unique index order_reinx on orders(order_num,order_date)  
  2. tablespace users  
  3. reverse; 

創建函數索引(函數索引即可以是普通的B樹索引,也可以是位圖索引)

  1. create index emp_substr_empno  
  2. on employees(substr(empno,1,2))  
  3. tablespace users; 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved