I'm using Hibernate 2.1.3 with Postgres 7.2.1.
I have a method rather big that inserts in several tables in one transaction.
As an example, it inserts:
Code:
1 in A
30 in B
120 in C
The method is executing correctly giving no error. The only problem that I'm having is that in "C" table, I only have 83 registers of the total 120!?
And if I remove the
120 in C code section, it inserts correctly in A and in B.
So what's the problem? Do I have to configure some boot parameter to insert that much of data?
Whats interesting is that the method doesn't become slow or anything. And I'm printing all the newly 120 created objects right before saving them.
Do I have to configure for bulk inserts?
Please help. I'm very stuck.