I am getting an oracle error ORA-01001: invalid cursor
in the production where a number of transactions are processed in bulk. However the same code works fine in development.
I need to know when can one have ORA-01001: invalid cursor
in an update query. I did some googling and found that there are two possibilities of getting this error:
- Numbers of cursors opened becomes greater than MAXCURSOR permitted?
- An attempt to fetch is made without opening a cursor.
Has anyone faced the same problem I had described above? Please suggest solutions.