이거 해결할려고 구글일 무지막지하게 했다. 기존에 프로시져에 스트림 방식으로 저장을 하게 되면 장문 입력이 안되는 문제가 있기 때문이다. private static CLOB getCLOB( String clobData, Connection conn ) throws Exception { CLOB tempClob = null; try { // create a new temporary CLOB System.out.println("Get Temporary LOB data1"); tempClob = CLOB.createTemporary( conn, true, CLOB.DURATION_SESSION ); System.out.println("Get Temporary LOB data2"); // Open the tem..