ORA-01000 error with text importer

marybeth

Member
I used text importer to create a script which was inserting 284 records. About 2/3 of the way I received this error: ORA-01000 maximum open cursors exceeded. I added several commit statements throughout the script but it still happened. Any ideas as to what this means?
 
It probably means that you should increase the OPEN_CURSORS initialization parameter of this database instance. The default value is 50, which may be too low.
 
Back
Top