Hi Team,
I am facing issue for while inserting bulk data into oracle database from c# console app.
My data will be around 2 to 3 million records. I am getting this error invalid buffer length for ttc field. It was working fine in oracle 12 c. But when upgraded to 19.11 this issue is coming.
I followed below link of 1st approach.
https://www.c-sharpcorner.com/article/two-ways-to-insert-bulk-data-into-oracle-database-using-c-sharp/
If i insert 1 lakh records using above link first approach it is working fine. So I decided to loop through records for every 1 lakh records.
Like after inserting one lakh records and it should pick another 1 lakh records from 100001 like that skip before 1 lakh records from DataTable.
I am loading all 2 million data in to DataTable initially.
Is this possible way by looping through DataTable?
Please suggest me with the solution for this problem.