查詢oracle表的資訊(表,欄位,約束,索引)

315959312發表於2014-02-24
查詢oracle表的資訊(表,欄位,約束,索引)
1、查詢出所有的使用者表
select   *   from   user_tables   可以查詢出所有的使用者表
2、查詢出使用者所有表的索引
select   *   from   user_indexes
3、查詢使用者表的索引(非聚集索引): 
select   *   from   user_indexes where   uniqueness='NONUNIQUE'
4、查詢使用者表的主鍵(聚集索引): 
select   *   from   user_indexes where   uniqueness='UNIQUE' 
5、查詢表的索引
select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and
t.table_name='NODE'
6、查詢表的主鍵
select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and
au.constraint_type = 'P' AND cu.table_name = 'NODE'
7、查詢表的唯一性約束(包括名稱,構成列): 
select column_name from user_cons_columns cu, user_constraints au where cu.constraint_name=au.constraint_name and
cu.table_name='NODE'
8、查詢表的外來鍵
select * from user_constraints c where c.constraint_type = 'R' and c.table_name='STAFFPOSITION'
查詢外來鍵約束的列名: 
select * from user_cons_columns cl where cl.constraint_name = 外來鍵名稱
查詢引用表的鍵的列名:
select * from user_cons_columns cl where cl.constraint_name = 外來鍵引用表的鍵名
9、查詢表的所有列及其屬性
select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name='NODE'

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12478376/viewspace-1086836/,如需轉載,請註明出處,否則將追究法律責任。

相關文章