Hi! I'm working with Hibernate and Oracle 8. I have a problems working with Blobs... The sourcecode is: Blob data; public Blob getData( ) { return data; } public void setTheData(byte[] theData) { this.data = Hibernate.createBlob(theData); } The error is: Could not synchronize database state with session java.sql.SQLException: operación no autorizada: streams type cannot be used in batching What I should do? Thank you!