Resolution
If you are noticing that you are seeing ORA-01000 Maximum Cursors Exceeded errors, this is an error thrown from an Oracle database, and is either being returned to the Access Governance Suite repositiory through a JDBC connection or is coming directly from your Access Governance Suite repository if it is an Oracle repository itself. The actual issue is one within the database, in that the Oracle database has exceeded the maximum allowable number of open cursors as specified by the initialization parameter OPEN_CURSORS in the INITSID.ORA -SPFILE which determines the maximum number of cursors per session.
So, the problem that you have experienced is that you have exceeeded that number during the operation, and should increase the maximum allowable OPEN_CURSORS. If your instance being served atop an Oracle RDBMS, you should set the instance to allow for maximum cursors of 400 through the following method:
Increase your OPEN_CURSORS on the Oracle initialization file. Here is an example from a forum:
ALTER SYSTEM SET open_cursors = 400 SCOPE=BOTH;
Then, restart the Oracle Database, then restart the Application Server for Access Governance Suite.
You should now be able to resolve the problematic operation without the ORA-01000 error. If this error persists - please contact NetIQ Support.