The New Home of Oracle-wiki.net
The New Home of Oracle-wiki.net
All things oracle...
All things oracle...
A website for IT Professionals involved with Oracle database.
The INDEX_FFS hint forces Oracle to perform a fast full index scan rather than a full table scan.
Each parameter serves the same purpose as in INDEX Hint.
SELECT /*+ INDEX_FFS(a myIndex1) */ col1
FROM myTable1 a
/
The NO_INDEX_FFS hint forces Oracle to exclude a fast full index scan of the specified indexes on the specified table. Each parameter serves the same purpose as in the NO_INDEX Hint.
SELECT /*+ NO_INDEX_FFS(myTable1 myIndex1) */ col1
FROM myTabke1
/
Published on
Published 24th May 2022