Data Loading [Sqlldr Direct Path] Part -2
SQL*Loader with different loading options: SQL*Loader have to methods for loading data as mention below: Conventional path Direct path But we normally use conventional path in our daily life, Direct path load is a very good option oracle provides to increase loading performance. Pre-requisite: The target table where this utility will load data that must be there at targeted schema, As SQL* loader never create tables it only help to load data in existing table. And also the user for which you are executing this process he have to have INSERT and DELETE privileged. So in conventional way once we execute sqlldr command it internally process sql commands[Insert with bind varray buffer] to load it and for that it start searching for those blocks which are with in HWM means search for partial fill blocks or those blocks which are still vacant due to delete activity, Moral is it does not increase HWM instead it will search ...