dendenners
Programmer
Hi there,
I have this jave program to insert the contents of a file into an oracle database. The stipulation is that if any errors occur while running through the program, any records added to the database must be rolled back. This worked fine up to now, but unfortunately I have just received a file that contains 35000 records, and while processing it I ran in to the above error. I believe this is caused because I do not perform a commit until the very end of my program, and thus am asking the database to hold 35000 open cursors. Does this sound right and if so, is there any way around this limitation?
Thanks
I have this jave program to insert the contents of a file into an oracle database. The stipulation is that if any errors occur while running through the program, any records added to the database must be rolled back. This worked fine up to now, but unfortunately I have just received a file that contains 35000 records, and while processing it I ran in to the above error. I believe this is caused because I do not perform a commit until the very end of my program, and thus am asking the database to hold 35000 open cursors. Does this sound right and if so, is there any way around this limitation?
Thanks