Utilizing parallel loading with Oracle SQL Loader to increase performance.
If you have more than 2 CPU cores on your server, you can run parallel SQL Loader scripts to utilize the extra CPU and increase the performance of your data loading. Follow the parameters below to use parallel loading.

smallwei 11:10 pm on January 17, 2010
You can use Parallel Loads when you use sqlldr with direct path data loads. This option allows multiple SQL*Loader jobs (scripts) to execute simultaneously. Note: You must also use the append option in your sql loader control file. The parameter to utilize parallel load is “parallel=true”
Here is the example:
Note: we use the “&” to background the jobs in *nix. In Windows, you can submit the jobs separately.