FULL

FULL Hint

The FULL hint forces the Oracle to perform a full table scan for the table specified.

Example

SELECT /*+ FULL(a) */ col1, col2
  FROM MyTab a
  WHERE col1 LIKE '%hey%'
/

Published 24th May 2022

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License