Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 2 down vote accepted

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.

share|improve this answer
Thanks, that's useful; unfortunately I'm on 11.1 – Dmitri Mar 4 '11 at 2:11

direct path inserts are only possible in a insert into x as select * from y scenario. This can be done using jdbc, no problem. This can not be done with insert and values. This also can not be done when the database in in force logging mode. Most of the times when a standby database in connected, the primary database will be in force logging mode.

I hope this helps, Ronald.

share|improve this answer
Ah, I didn't realize this doesn't work on individual inserts. – Dmitri Mar 3 '11 at 21:12
Also don't forget that the insert is written per block .... It is intended for BULK inserts. – ik_zelf Mar 4 '11 at 6:28

Does

insert /*+ append */ into desttab select * from srctab 

not work in JDBC ?

share|improve this answer
It does, but the source of rows is outside of the database – Ronnis Mar 4 '11 at 19:18
@Ronnis, yeah... I've followed this thread with attention. I'm on 11gr2 and I'll probably give a try to the 'append_value' hint mentioned by Gary but that won't help Dmitri, (unless he goes for the upgrade of course). There any way a lot of things that can be done to boost JDBC perfs. But that wasn't the question. Cheers. – Alain Pannetier Mar 4 '11 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.