We have specific requirement where we need to use Bulk Insert inside docker image. Our DB is in Oracle and application designed in .Net Core 3.1. We cannot use sql loader.
Now, I am exploring which option will be better to use -
- Oracle Array Binding
- Oracle Bulk copy
In my local when I tried, I saw Array binding is faster compared to Bulk copy. Then question remains what is the purpose of the Oracle Bulk Copy if its not faster.
Any suggestion?