oracle sql索引查询,Oracle查询数据库的索引字段以及查询用索引
Select *
FROM dba_ind_columns
Where index_owner='TEST73' AND table_name=upper('tx_log_t')
可以查詢數據庫的表上面的索引字段。
參考博文:
Question: I added an index hint in my query,but the hint is being ignored. What is the correct Syntax for an index hint and how do I force the index hint to be used in my query?
Answer:Oracle index hint Syntax is tricky because of the index hint Syntax is incorrect it is treated as a comment and not implemented. Here is an example of the correct Syntax for an index hint: select /*+ index(customer cust_primary_key_idx) */ * from customer; Also note that of you alias the table,you must use the alias in the index hint: select /*+ index(c cust_primary_key_idx) */ * from customer c; Also,be vary of issuing hints that conflict with an index hint. In this index hint example,the full hint is not consistent with an index hint: select /*+ full(c) index(c cust_primary_key_idx) */ * from customer c;
總結
如果覺得編程之家網站內容還不錯,歡迎將編程之家網站推薦給程序員好友。
本圖文內容來源于網友網絡收集整理提供,作為學習參考使用,版權屬于原作者。
總結
以上是生活随笔為你收集整理的oracle sql索引查询,Oracle查询数据库的索引字段以及查询用索引的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql和oracle的字符串拼接_O
- 下一篇: 登录页面的代码