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));