Writing large amounts of data into a field of an Oracle database seems to raise some difficulties. The VARCHAR2 datatype is limited to 2K (or 4K) bytes, so you get into LOB (or CLOB or BLOB) datatypes. Then you run into problems with how to uses these datatypes from jdbc as well as more mysterious problems with speed and size limits.

Writing LOB fields in JDBC

Two-phase write

Consists of a

Further explanation ToBeWritten

One-phase write

ToBeWritten

Speed Issues

ToBeWritten

Size Issues

Random notes: