Oracle

Function-Based Indexes

Figo Kim 2007. 1. 10. 22:53
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
  1. The Oracle server uses the index only when that particular function is used in a query.
  2. If the function is not used in a query and there is no specific index, the Oracle server will full scan.
  3. QUERY_REWRITE_ENABLE initialization parameter must be set to TRUE for a function-based index to be used.

CREATE        INDEX    upper_dept_name_idx

ON        dept2(UPPER(department_name));

 

By Office 2007

'Oracle' 카테고리의 다른 글

우분투에서 sqlplus history기능 추가하기  (0) 2008.11.16
Function-Based Indexes  (0) 2007.01.10
Adding a Constraint Syntax  (0) 2007.01.09
Adding a Constraint Syntax  (0) 2007.01.09
The guideline of Modifying a Column  (0) 2007.01.09