RCU-6107: DB Init Param Prerequisite failure for: OPEN_CURSORS in RCU
When you are running the Repository Creation Utility this validate that you have the prerequisites to run without any error. One of the prerequisites for RCU is to have configured the OPEN_CURSORS in you Oracle Database to 800.
The RCU-6107: DB Init Param Prerequisite failure for: OPEN_CURSORS will appears like the image below
This can be resolved by the following:
1. Login on your database.
o Use the system user.
2. Execute the next command to validate the current value for the OPEN_CURSORS.
o SHOW PARAMETERS OPEN_CURSORS
3. If its value is less than 800 then write the following command.
o ALTER SYSTEM SET OPEN_CURSORS=500 SCOPE=SPFILE;
6. Restart your Database.
7. Start the RCU and try now.