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

查看Oracle索引和視圖的方法

編輯:Oracle數據庫基礎

如何查看Oracle索引是很多人提到的問題,下面就為您介紹查看Oracle索引和視圖的方法,希望對您能有所幫助。

查看Oracle索引個數和類別

  1. select * from user_indexes where table='表名' ; 

查看索引被索引的字段

  1. SQL>select * from user_ind_columns where index_name=upper('&index_name'); 

查看某表的約束條件

  1. SQL>select constraint_name, constraint_type,search_condition, r_constraint_name   
  2. from user_constraints where table_name = upper('&table_name');   
  3.  
  4. SQL>select c.constraint_name,c.constraint_type,cc.column_name   
  5. from user_constraints c,user_cons_columns cc   
  6. where c.owner = upper('&table_owner') and c.table_name = upper('&table_name')   
  7. and c.owner = cc.owner and c.constraint_name = cc.constraint_name   
  8. order by cc.position;  

查看視圖的名稱

  1. SQL>select view_name from user_vIEws; 

以上就是查看Oracle索引和視圖的方法介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved