No of visitors who read this post:
1014
Category:
MySQL Server
Type:
Question
Author:
Olivia middleton
Hi all!
I have a question regarding SQL *Loader. I want to know the difference between Conventional and Direct Path Loader. And also, what are the restrictions in the direct path loader?
Can you give a statement, so I can fully understand the logic of the differences between the two?
Thanks in advance.
- Login or Signup Now to post comments

Hi,
Conventional path load uses the default ‘insert’ in SQL. It uses a bind array data into the database tables. When the SQL loader performs this kind of load, it competes at equal levels with all other processes for resources of the buffer. By default, the SQL Loader uses the conventional path load but is slow on loading. On the other hand, the direct path load uses API to pass the data to be loaded, in contrary to the conventional path that fills a bind array and passes it to the oracle server with the ‘insert’ command. In the direct path load, data conversion takes place on the client side rather than the server side as in the conventional path load. The differences between these two are:
The direct path load of a partitioned or sub-partitioned table can be useful when you have tables that have many partitions or sub partitions. Restrictions of the direct path load include: