Is it possible to do direct-load INSERTs in Oracle through JDBC?
I currently use batched prepared statements (through Spring JDBC), is there any way to make these bypass the redo logs on a NOLOGGING table?
This is with Oracle 11g.
|
|
|
There is an APPEND_VALUES hint introduced in 11gR2 for direct path inserts with INSERT...VALUES. Don't have an 11gR2 instance available to test whether it works with JDBC batch inserts. It is worth a try though. |
|||
|
|
|
direct path inserts are only possible in a I hope this helps, Ronald. |
|||
|
Does
not work in JDBC ? |
|||||
|