아래의 쿼리에서보면 인덱스를 타야할거 같은데 Full Table Scan을 하고 있다. DB_FILE_MULTIBLOCK_READ_COUNT 의 설정에 따라 Plan이 빠뀐다. Oracle EBS 11i에서는 DB_FILE_MULTIBLOCK_READ_COUNT=8 을 권장한다. 현 시스템에는 더 높은 숫자로 설정되어 있는데..아무런 문제가 없는 상황에서 CBO에 영향을 미치는 저 파라미터를 변경해도 괜챦을지???? select distinct segment1 locator from MTL_ITEM_LOCATIONS where organization_id = :1 and subinventory_code = :2 order by segment1 db_block_size = 8k MTL_ITEM_LOCATI..