My software needs to insert about 5000 records into Oracle database at once, so I used OracleBulkCopy
to do this. My table use trigger to auto increment primary key. But the OracleBulkCopy
throw "ORA-26086: direct path does not support triggers" exception.
So, how can I both use OracleBulkCopy
and auto increment primary key?