Hi everyone,
I have a transaction which includes inserting 5 records into a table, which has a Blob column. I'm trying to insert pdf files in that column.
The tables are in an oracle database. I'm using
tomcat 6 as app server and Hibernate as persistence framework.
When i run my application, the system halts when i try to commit the transaction. I tried commiting the transaction after inserting each record and the transaction commits after the first one and halts on the second commit.
I've checked rollback segment size and that doesn't seem to be the problem.
When i run the same transaction in PL/SQL, connecting with the same oracle user, the transaction runs and commits in less than one second.
Could anyone please help me with this? Why does the system halt when i call Transaction.commit()?